Java以UTF-8编码读写文件
Posted 心静禅定ing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java以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编码读写文件的主要内容,如果未能解决你的问题,请参考以下文章
java 将编码格式为utf-8的文件内容以 GBK编码存到txt文档