各行に 1 単語ずつ、単語のリストを保持する .txt ドキュメントがあります。10行あります。このドキュメントを読んでランダムに行を選び、その単語を表示するにはどうすればよいですか?
これは私がこれまでに持っているコードです:
Scanner fileScan, wordScan;
String word;
Random rand = new Random();
int pickedLine = rand.nextInt(6)+1;
fileScan = new Scanner(new File("list.txt"));
while (fileScan.hasNext()) {
word = fileScan.nextLine();
System.out.println()
}