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);
	}
}


 


 

所有资源资源汇总于公众号



 

猜你喜欢

转载自www.cnblogs.com/ConstXiong/p/11880273.html
今日推荐