码迷,mamicode.com
首页 > 其他好文 > 详细

对于转换流的理解

时间:2019-08-24 16:59:10      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:目标   amr   while   形式   tput   txt   问题   write   平台   

一:概述

转换流:字符流转字节流,字节流转字符流

使用场景:解决乱码问题

    public static void main(String[] args) throws IOException {
     //源文件为gbk编码
/*FileReader fr=new FileReader("a.txt"); OutputStreamWriter osw=new OutputStreamWriter(new FileOutputStream("b.txt"),"utf-8"); int i; while((i=fr.read())!=-1){ osw.write(i); } fr.close(); osw.close();*/
     //源文件为utf-8编码 InputStreamReader isr
=new InputStreamReader(new FileInputStream("b.txt"),"utf-8"); FileWriter fw=new FileWriter("a.txt"); int j; while((j=isr.read())!=-1){ fw.write(j); } isr.close(); fw.close(); }

 

下面为图解编码和解码

 

技术图片

 

解码:字节流转字符流

编码:字符流转字节流

 

流程:1.读取源文件(gbk)的字节流到内存中,根据平台默认的编码表(gbk)进行解码成字符流

   2.字符流(gbk)编码为字节流(utf-8与目标文件一致),此处使用OutputStreamWriter将gbk转换为utf-8编码

 

总结:

无论是读取的时候,还是写出的时候,都需要参考读取文件和目标文件的编码形式 读取源文件时,源文件的编码需要和解码的编码形式一致 写出到目标文件时,编码形式必须和目标文件的编码形式一致

对于转换流的理解

标签:目标   amr   while   形式   tput   txt   问题   write   平台   

原文地址:https://www.cnblogs.com/xhlwjy/p/11405139.html

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