package cn
.itcast
.p3
.io
.filereader
;
import java
.io
.FileReader
;
import java
.io
.IOException
;
public class FileReaderDemo2
{
public static void
main(String
[] args
) throws IOException
{
FileReader fr
= new FileReader("demo.txt");
char
[] buf
= new char
[1024];
int len = 0;
while((len=fr
.read(buf
))!=-1){
System
.out
.println(new String(buf
,0,len));
}
fr
.close();
}
}
转载请注明原文地址:https://blackberry.8miu.com/read-35706.html