以下實例示範了使用readLine() 方法來讀取檔案test.log 內容,其中test.log 檔案內容為:
菜鸟教程www.runoob.comjava 程式碼如下:
/* author by runoob.com Main.java */import java.io.*;public class Main { public static void main(String[] args) { try { BufferedReader in = new BufferedReader (new FileReader("test.log")); String str; while ((str = in.readLine()) != null) { System.out.println(str); } System.out.println(str); } catch (IOException e) { } }}
以上程式碼運行輸出結果為:
菜鸟教程www.runoob.comnull
以上Java實例- 讀取文件內容的內容,更多相關內容請關注PHP中文網(www.php.cn)!