ここまでで、テキスト ファイル内の単一の文字列を検索できるプログラムを作成しました。検索した文字列のインデックスが表示されます。しかし、単一のテキスト ファイルで複数の文字列を検索するにはどうすればよいでしょうか。
これまでのところ、スキャナーを使用して「Alice」と入力すると、出力は次のようになります。
Got a match at line 17
Got a match at line 19
Got a match at line 20
Got a match at line 21
ただし、可能であれば、入力としてアリス、ジョン、スティーブンをスキャナーで検索し、出力を次のようにするにはどうすればよいですか。
Got a match for Alice at line 17
Got a match at John at line 19
Got a match at Steven at line 20
Got a match at Steven at line 21
.
public static void main(String[]args) throws IOException{
int nnames;
String[] names;
String stringSearch = null;
Scanner scan = new Scanner(System.in);
//for(int i=1;i<=3;i++){
stringSearch = scan.nextLine();
ArrayList<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();
Collections.sort(words);
System.out.println("ArrayList elements after sorting in ascending order : ");
System.out.println("");
for(int i=0; i<words.size(); i++)
System.out.println(words.get(i));
for(String sLine : words)
{
if (sLine.contains(stringSearch))
{
int index = words.indexOf(sLine);
System.out.println("");
System.out.println("Got a match at line " + index);
}
}
System.out.println(words.size());
}