我有以下方法讀取文本文件:如何輸出進度指示器,而不是實際的文件內容
public static void readFile(String path) {
BufferedReader br = null;
try {
String sCurrentLine;
br = new BufferedReader(new FileReader(path));
while ((sCurrentLine = br.readLine()) != null) {
System.out.println(sCurrentLine); // Progress indicator!
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)br.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
我的文件確實是大〜700MB,我很想能夠打印進度指示器或而不是在控制檯上打印真正不太好的實際文件。可能是這樣的東西:
========================================================== 100%
任何提示表示讚賞。
也許http://stackoverflow.com/questions/23167319/how-to-use-java-progress-bar-while-read-a-text-file可以幫助嗎? – GuiSim