다음 예에서는 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) { } }}
위 코드가 실행됩니다. 출력 결과는 다음과 같습니다.
菜鸟教程www.runoob.comnull
위는 Java 예제입니다. 파일 내용을 읽으면 PHP 중국어 웹사이트(www. .php.cn)!