Chinaunix首页 | 论坛 | 博客
  • 博客访问: 277883
  • 博文数量: 53
  • 博客积分: 4010
  • 博客等级: 上校
  • 技术积分: 496
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-06 11:05
文章分类

全部博文(53)

文章存档

2011年(1)

2008年(52)

我的朋友

分类: WINDOWS

2008-04-02 16:12:30

String path = “D:\test.txt”;          //此处的path包括文件名
String str = “”;
String content = “”;
BufferedReader in = new BufferedReader(new FileReader(path));
while(str = in.readline() != null){
  content = content + str;
}
in.close();
System.out.println(content);
如果文件内容为中文,读取文件内容的方法为:
String str = “”;
String content = “”;
String path = “D:\test.txt”;
File f = new File(f);
InputStreamReader is = new InputStreamReader(new FileInputStream(f),”UTF-8”);
BufferedRead in = new BufferedRead(is);
while(str = in.readline() != null){
  content = content + str;
}
in.close();
System.out.println(content);
阅读(1358) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2009-08-24 14:01:09

谢了,