1
這是迄今爲止我所擁有的掃描儀,用於從1到100之間的1000個數字的文件中讀取所有數字。我只是有點卡住了我應該走哪個方向。使用ArrayLists計算文件中整數的出現次數
import java.util.Scanner;
import java.io.*;
import java.util.ArrayList;
public class ArrayListProb
{
public static void main(String[] args)throws IOException
{
File file = new File("number.txt");
Scanner reader = new Scanner(file);
ArrayList<Integer> numList = new ArrayList<Integer>(1000); //declare ArrayList with 1000 numbers
while(reader.hasNext()) //add the numbers to ArrayList
{
numList.add(reader.nextInt());
}
reader.close();
}
}