在线阅读文本文件中的数字

时间:2015-10-27 20:04:39

标签: java

我试图从网站上获取数字(整数)并将它们放入数组中以便进一步操作。这是我到目前为止所拥有的

import java.io.IOException;
import java.net.URL;
import java.util.Scanner;
public class Scores {
    public static void main(String[] args) throws IOException{
        URL url = new URL("http://cs.armstrong.edu/liang/data/Scores.txt");
        Scanner input = new Scanner(url.openStream());
        int []score = new int [100];
        int i = 0;
        while (input.hasNextInt()) {
            score[i++] = input.nextInt();
            System.out.println(score);
        }
    }
}

问题是阵列中的所有数字都回来了[I @ 6bc7c054,任何帮助都会受到赞赏。

1 个答案:

答案 0 :(得分:0)

System.out.println(score[i]);

你正在打印阵列本身