java将UTF-8编码转中文汉字,encode转码以及解码

//UTF-8编码转中文

String content ="\u8BA1\u5212\u8C03\u5EA6\u4EFB\u52A1";

String result = java.net.URLDecoder.decode(content.toString());


//java中使用encode转码和解码,引用的都是java.net.URL
String str = URLEncoder.encode("中国","utf-8");  //转码
String str1=URLDecoder.decode(str, "UTF-8"); //解码

你可能感兴趣的:(java将UTF-8编码转中文汉字,encode转码以及解码)