Java输出文本文件的内容
发布时间:2013-09-30 18:29 来源/作者:藕码网 分类:扩展区二
TAG标签:
本文介绍在Java中如何正确的输出文件文本中的文本,使用InputStreamReader类。
- 运行环境:JDK1.6+Tomcat6.0 + Eclipse
- 授权方式:开源
- 下载积分:免费
- 推荐等级:★★★★
- 更新时间:2013-09-30
- 演示地址:暂无
- 代码详情
- 用户评论
- 相关代码
-
本文介绍在Java中如何正确的输出文件文本中的文本,使用InputStreamReader类。
部分代码展示:
try {
fis = new FileInputStream("xinxi.txt");
irs = new InputStreamReader(fis);
while (true) {
ch = (char) irs.read();
System.out.print(c);
System.out.flush();
if (ch == '\n') break;
}
fis.close();
} catch (Exception e) { }
System.exit(0);
-
最新评论