次の例は、readLine() メソッドを使用してファイル test.log の内容を読み取る方法を示しています。test.log ファイルの内容は次のとおりです。コードは次のとおりです。
菜鸟教程www.runoob.com実行の出力結果上記のコードは次のとおりです:
/* 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) { } }}
上記は Java の例です - ファイルの内容を読んでください。その他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。