テキスト ファイルを取得し、それを 1 つの配列に配置しました。ただし、配列内の文字列(単語)を検索したい。私の場合、スキャナーを使用してユーザーからの入力を取得し、配列内で一致する文字列を検索したいと考えていました。どうすればそのようなタスクを達成できますか?
public static void main(String[]args) throws IOException
{
//Scanner scan = new Scanner(System.in);
//String stringSearch = scan.nextLine();
List<String> words = new ArrayList<String>();
BufferedReader reader = new BufferedReader(new FileReader("File1.txt"));
String line;
while ((line = reader.readLine()) != null) {
words.add(line);
}
reader.close();
System.out.println(words);
}
私の出力:
[CHAPTER I. Down the Rabbit-Hole, Alice was beginning to get very tired of sitting by her sister on the, bank, and of having nothing to do:]