Java中使用FileWriter类来写文本文件
发布时间:2013-09-30 18:25 来源/作者:藕码网 分类:扩展区二
TAG标签:
本文介绍在Java中使用FileWriter类来写文本文件。
- 运行环境:JDK1.6+Tomcat6.0 + Eclipse
- 授权方式:开源
- 下载积分:免费
- 推荐等级:★★★★
- 更新时间:2013-09-30
- 演示地址:暂无
- 代码详情
- 用户评论
- 相关代码
-
本文介绍在Java中使用FileWriter类来写文本文件。
部分代码展示:
void WriteMyFile() {
try {
FileWriter fw = new FileWriter("mydata.txt");
PrintWriter out = new PrintWriter(fw);
out.print(“hi,this will be wirte into the file!”);
out.close();
fw.close();
} catch (IOException e) {
System.out.println("Uh oh, got an IOException error!");
e.printStackTrace();
}
} -
最新评论