コードの一部を作成してから、特定の部分の後に何をすべきかについて少し固執しています。テキスト ファイルを ArrayList に渡すことになっているため、ユーザーはチーム名を入力できる必要があり、テキスト ファイルに表示される回数を合計する必要があります。しかし、私の人生のために、私は自分が持っているものをどのように進めるかについて立ち往生しています.
public static void main(String[] args) throws FileNotFoundException {
ArrayList<String> mlb = new ArrayList<String>();
Scanner fileReader = new Scanner(new File("WorldSeriesWinners.txt")); // Declares the scanner to read from the file.
int Count = 0;
Scanner keyboard = new Scanner(System.in);
String userInput;
while (fileReader.hasNext()){
// While loop to continue to read while there is another line.
mlb.add(fileReader.nextLine());
}
System.out.println("Enter a championship team you are looking up(1903-2009).");
userInput = keyboard.nextLine();
for(String team : mlb){ // Will run through the file and display the ArrayList.
if(team.contains(userInput))
System.out.println(team);