Solution to string garbled code in java: (Recommended: java video tutorial)
Transcode the string to solve the string garbled code As follows:
System.out.println(str); String str1 = new String(str.getBytes("ISO-8859-1"), "utf-8"); System.out.println(str1); String str2 = new String(str.getBytes("gb2312"), "utf-8"); System.out.println(str2); String str3 = new String(str.getBytes("gbk"), "utf-8"); System.out.println(str3);
str.getBytes(charsetName);charsetName is the encoding of the original character
"utf-8" converts str to utf-8 encoding.
For more java knowledge, please pay attention to the java basic tutorial column.
The above is the detailed content of Solution to string garbled characters in java. For more information, please follow other related articles on the PHP Chinese website!