-1

テキストファイルの内容をコンソールに印刷しようとしていますが、時間の遅れがあります。たとえば、各行に2秒かかります。

これは私のテキストファイルの内容です:

デビッド
1
1
クリス
1
2
デビッド
2
1
クリス
1
3
デビッド
3
1

これはこれまでの私のコードです:

File f = new File("actions.txt");
try{
    Scanner scanner = new Scanner(f);
    while (scanner.hasNextLine()) {
        String line = scanner.nextLine();
        System.out.println(line);
    }
    scanner.close();
} catch (FileNotFoundException e) {
    e.printStackTrace();
}
System.exit(0); // terminate the program
}

どんな助けでも素晴らしいでしょう(初心者の場合)

4

1 に答える 1

1

あなたはこれを試すことができます。

File f = new File("actions.txt");
try{
    Scanner scanner = new Scanner(f);
    while (scanner.hasNextLine()) {
        String line = scanner.nextLine();
        System.out.println(line);
        Thread.sleep(2000);
    }
    scanner.close();
} catch (FileNotFoundException e) {
    e.printStackTrace();
}catch (InterruptedException e) {
    e.printStackTrace();
}
System.exit(0); // terminate the program

}

于 2013-03-27T11:19:05.817 に答える