我proccesos.txt有這個緩衝閱讀器,串逗號,然後將二維數組
1,500,600 2,300,800 3,800,1000 4,200,5000
什麼即時試圖在這裏做的是插入procesos.txt在將被顯示爲一個二維數組遵循4行3列,但沒有comamas
這是目前我對BUTTOM
`
代碼0`
我proccesos.txt有這個緩衝閱讀器,串逗號,然後將二維數組
1,500,600 2,300,800 3,800,1000 4,200,5000
什麼即時試圖在這裏做的是插入procesos.txt在將被顯示爲一個二維數組遵循4行3列,但沒有comamas
這是目前我對BUTTOM
`
代碼0`
int line = 0;
while((sCurrentLine = br.readLine()) != null){
String[] tmp = sCurrentLine.split(",");//split the line up into its separate values
for(int i = 0 ; i < 3 ; i++)
myArr[line][i] = Integer.parseInt(tmp[i]);
//convert the values into integers and insert them at the matching position
//in the array
line++;
}
我想將它插入myArr,該[] [] –