我想從文本文件中讀取整數並將它們存儲到數組中。該文本文件讀取:從txt文件讀取整數並存儲到數組
4
-9
-5
4
8
25
10
0
-1
4
3
-2
-1
10
8
5
8
然而,當我跑我的代碼,我得到在控制檯窗口[[email protected]
...
public static void main(String[] args) throws IOException
{
FileReader file = new FileReader("Integers.txt");
int[] integers = new int [100];
int i=0;
try {
Scanner input = new Scanner(file);
while(input.hasNext())
{
integers[i] = input.nextInt();
i++;
}
input.close();
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println(integers);
}
太謝謝你了! – user1877918
務必接受最有幫助的答案! – ranman
我不明白這是如何投票最少的。 – dreamcrash