GB2312编码的字符串如何转换为ISO-8859-1编码?

package constxiong.interview;

import java.io.UnsupportedEncodingException;

/**
 * 字符串字符集转换
 * @author ConstXiong
 * @date 2019-11-01 10:57:34
 */
public class TestCharsetConvert {

	public static void main(String[] args) throws UnsupportedEncodingException {
		String str = "爱编程";
		String strIso = new String(str.getBytes("GB2312"), "ISO-8859-1");
		System.out.println(strIso);
	}
}

 

   

来一道刷了进BAT的面试题?

posted @ 2019-11-18 09:27  ConstXiong  阅读(584)  评论(0编辑  收藏  举报