码迷,mamicode.com
首页 > 其他好文 > 详细

字符流查看txt文件

时间:2016-02-19 14:21:18      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

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文件

标签:

原文地址:http://www.cnblogs.com/zqsheng/p/5200682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!