- Tạo file test.txt có nội dung tùy ý
- Viết chương trình in ra màn hình nội dung file vừa nhập
Code Java:
package code1;
/******************************************************************************
* File : Typer.java
* Author : http://lap-trinh-may-tinh.blogspot.com/
* Display the contents of a text file.
******************************************************************************/
public class Code1
{
public static void main(String[] args) throws Exception
{
java.io.BufferedReader br=new java.io.BufferedReader(
new java.io.FileReader("E:\\test.txt"));
String line=null;
while ((line=br.readLine())!=null)
{
System.out.println(line);
}
}
}
Một số tài liệu và khoá học bổ ích dành cho bạn:
# Tài liệu: Lập trình hướng đối tượng JAVA core dành cho người mới bắt đầu học lập trình [Click để xem]
# Khoá học online: Lập trình Java trong 4 tuần [Click để xem]