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}
};
您可以看到. txt 文件包含一个多维数组列表。 是否有办法将它转换成 Java 内的数组?
干杯! 干杯! 干杯! 干杯!