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

GBK编码字节流与UTF-8编码字节流的转换

时间:2020-02-11 00:25:30      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:close   read   style   txt   解码   get   code   ati   stream   

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class BianMaDemo4 {
    public static void main(String[] args) throws IOException, FileNotFoundException {
        
        /*
         * 
         * GBK编码字节流与UTF-8编码字节流的转换:
         * 操作步骤就是:先解码:new String(src,0,len,"GBK")得到字符串;再使用getBytes("UTF-8")得到UTF-8编码字节数组        
         */
        
        //gbk-->utf-8
        FileInputStream fis=new FileInputStream("gbk_file.txt");//gbk文件
        FileOutputStream fos=new FileOutputStream("222.txt");//utf-8文件
        byte[] src=new byte[1024];
        int len;
        byte[] dest;
        while((len=fis.read(src))!=-1){
            dest=new String(src,0,len,"GBK").getBytes("UTF-8");
            fos.write(dest,0,dest.length );
        }
        
        
        //utf-8-->gbk
        /*FileInputStream fis=new FileInputStream("222.txt");//utf-8文件
        FileOutputStream fos=new FileOutputStream("gbk_file.txt");//gbk文件
        byte[] src=new byte[1024];
        int len;
        byte[] dest;
        while((len=fis.read(src))!=-1){
            dest=new String(src,0,len,"UTF-8").getBytes("GBK");
            fos.write(dest);
        }*/

        fis.close();//释放资源
        fos.close();
        
    }

}

 

GBK编码字节流与UTF-8编码字节流的转换

标签:close   read   style   txt   解码   get   code   ati   stream   

原文地址:https://www.cnblogs.com/abtious/p/12293387.html

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