我是 Java 新手,遇到了这个问题。我需要在一个方法中读取一个充满整数的 txt 文件,然后我应该在 main 中调用它来创建一个 ArrayList。我似乎无法弄清楚。
这就是我所拥有的。
public class num {
public static void main(String[] args) {
ArrayList<Integer> list = new ArrayList<Integer>();
list= getFile();
System.out.println("numbers are: " + list);
}
public static void getFile() {
try {
Scanner read = new Scanner(new File("numbers.txt"));
do {
int line = read.nextInt();
}while (read.hasNext());
} catch (FileNotFoundException fnf) {
System.out.println("File was not found");
}
return line;
}
}
Cats萌萌
叮当猫咪
相关分类