我正在尝试从文本文件中读取整数并将它们存储到数组中。文本文件内容如下:
4
-9
-5
4
8
25
10
0
-1
4
3
-2
-1
10
8
5
8
然而,当我运行我的代码时,我进入[I@41616dd6
了控制台窗口......
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);
}