I have files which contains array's like this: Here is a snippet from one of my .txt
itemlist= new int[][] {
{ 0, 0, 0, 0, 0},
{ 1, 1, 1, 1, 1},
{ 2, 2, 2, 2, 2},
{ 3, 3, 3, 3, 3},
{ 4, 4, 4, 4, 4}
};
As you see the .txt file contains a multidimensional array list. Is there any way to transfter this to an array within java?
Cheers!