嗨,我有一个文件,其中包含用逗号和空格分隔的数字,例如:
[ 0, 1, 1, 1, 0,
0, 0, 1, 0, 1 ]
使用以下方法将它们读取到 int 数组 im:
InputStream is = null;
try {
file = new int[20][20];
is = activity.getAssets().open(f);
for (int i = 0;i < file.length; i++)
for(int j = 0; j < file[i].length; j++) {
file[i][j] = Character.getNumericValue(is.read());
is.read();
is.read();
}
} catch (Exception e) {
Log.i("file", "exception: " + e);
但是如果我有更高的数字,比如 12,例如:
[ 0, 1, 10, 10, 0,
0, 0, 12, 0, 11 ]
如何将其读入数组?