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

第三篇 IO流技术(三)

时间:2018-08-26 20:52:22      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:col   coding   demo   imp   nbsp   中国   默认   byte   gbk   

编码和解码

package com.zzp.demo;

import java.io.UnsupportedEncodingException;

/**
 * 
 * 字符串到字节   -->  编码
 * @author java
 *
 */
public class ContentEncode {
    public static void main(String[] args) throws UnsupportedEncodingException {
        String msg = "我是中国人";
        byte[] datas = msg.getBytes();//默认是工程的字符集
        System.out.println(datas.length);
        
        //编码成其他的字符集
        datas = msg.getBytes("UTF-16LE");
        System.out.println(datas.length);
        
        datas = msg.getBytes("UTF-8");
        System.out.println(datas.length);
    }
}
package com.zzp.demo;

import java.io.UnsupportedEncodingException;

/**
 * 
 * 字节数组到字符串   --> 解码
 * @author java
 *
 */
public class ContentDecode {
    public static void main(String[] args) throws UnsupportedEncodingException {
        String msg = "我是中国人";
        byte[] datas = msg.getBytes();//默认是工程的字符集
        System.out.println(datas.length);
        //解码:字符串
        msg =new String(datas, 0, datas.length, "gbk");
        System.out.println(msg);
        
        //乱码
        //1、字节数不够
        msg = new String(datas, 0, datas.length-1, "gbk");
        System.out.println(msg);
        
        //2、字符集不统一
        msg = new String(datas, 0, datas.length, "utf8");
        System.out.println(msg);
    }
}

 

第三篇 IO流技术(三)

标签:col   coding   demo   imp   nbsp   中国   默认   byte   gbk   

原文地址:https://www.cnblogs.com/zhangzhipeng001/p/9538441.html

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