字符流查看txt文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符流查看txt文件相关的知识,希望对你有一定的参考价值。
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class Test03 {
public static void main(String[] args) throws FileNotFoundException {
FileReader fr=new FileReader("D:\\新建文件夹\\等待春天.txt");
char c[]=new char[1024];
int b =0;
try {
while((b=fr.read(c))!=-1){
String a=new String(c, 0, b);
System.out.println(a);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
以上是关于字符流查看txt文件的主要内容,如果未能解决你的问题,请参考以下文章