码迷,mamicode.com
首页 > 编程语言 > 详细

Java以UTF-8编码读写文件

时间:2017-04-09 12:55:29      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:txt   writer   编码   input   span   装饰者模式   文件操作   logs   utf-8   

java中文件操作体现了设计模式中的装饰者模式 。
以utf-8编码写入文件:
FileOutputStream fos = new FileOutputStream("test.txt");   
       OutputStreamWriter osw = new OutputStreamWriter(fos, "UTF-8");   
       osw.write(FileContent);   
       osw.flush();   

以utf-8编码读取文件:

FileInputStream fis = new FileInputStream("test.txt");   
  InputStreamReader isr = new InputStreamReader(fis, "UTF-8");   
  BufferedReader br = new BufferedReader(isr);   
  String line = null;   
  while ((line = br.readLine()) != null) {   
      FileContent += line;   
      FileContent += "\r\n"; // 补上换行符   
  }  

 

Java以UTF-8编码读写文件

标签:txt   writer   编码   input   span   装饰者模式   文件操作   logs   utf-8   

原文地址:http://www.cnblogs.com/gengaixue/p/6684087.html

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