021.4 IO流——字节字符桥梁(编码解码)
Posted Alos
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了021.4 IO流——字节字符桥梁(编码解码)相关的知识,希望对你有一定的参考价值。
默认使用的就是gbk编码,这里的例子改成了utf8编码
写入—编码
private static void writeText() throws IOException { FileOutputStream fos = new FileOutputStream("utf8.txt"); OutputStreamWriter osw = new OutputStreamWriter(fos,"UTF-8"); osw.write("求"); osw.close(); }
读取—解码
private static void readCNText() throws IOException { FileInputStream fis = new FileInputStream("utf8.txt"); InputStreamReader isr = new InputStreamReader(fis,"UTF-8"); int i = 0; while((i = isr.read())!=-1){ System.out.println((char)i); } isr.close(); }
字符流 = 字节流 + 编码表
#####################快捷操作的类
FileWriter and FileReader
以上是关于021.4 IO流——字节字符桥梁(编码解码)的主要内容,如果未能解决你的问题,请参考以下文章