I have this 2d arraylist and I want to read it from my txt file using buffer Reader(Java) . Any help?
//my 2d arraylist with integers 1 2 3 4 5 6 7 8 9 10 11 12
I have this 2d arraylist and I want to read it from my txt file using buffer Reader(Java) . Any help?
//my 2d arraylist with integers 1 2 3 4 5 6 7 8 9 10 11 12
Copyright © 2021 Jogjafile Inc.
Your input is 1d array, so to read it as 2d array - you have to provide (or get from somewhere) width and/or height of the resulting 2d array.
Here is example: