您好,登錄后才能下訂單哦!
java轉換字符串編碼格式 (解碼錯誤,重新解碼)
字符集概念:規定了某個文字對應的二進制數字存放方式(編碼)和某串二進制數值代表了哪個文字(解碼)的轉換關系。
我們在計算機屏幕上看到的是實體化的文字,而在計算機存儲介質中存放的實際是二進制的比特流。
亂碼場景(純屬瞎掰):
1) 前臺輸入utf-8編碼的一串漢字(string1)。 (頁面編碼為utf-8, 在內存中會將這串漢字以utf-8編碼為對應的二進制流存儲)
2) 這串漢字(string1)的二進制流在經過http協議傳輸到后臺時,這段比特流會被以iso-8859-1編碼強行解碼為字符串(string2)。
(2.1 http默認編碼格式為iso-8859-1)
(2.2 這個默認編碼在什么時候起作用呢? 應該是在到達tomcat之后, 到達servlet之前, tomcat對request請求強行使用iso-8859-1進行了解碼)
(2.3 有什么辦法阻止tomcat對request請求強行iso-8859-1解碼呢?
apache-tomcat\conf\server.xml中添加URIEncoding="UTF-8"配置即可,還是來個圖吧)
3) 在后臺(servlet)接收字符串(string2)時毫無疑問的亂碼了。
) 這時需要將接收到的字符串(string2)根據iso-8859-1編碼重新轉換為byte流。再將byte流根據utf-8編碼重新解碼為字符串(sting3)。
5) 這時的字符串(string3)和前臺的字符串(string1)是對應同一個二進制流,并且使用的是同一種編碼。也就不會亂碼了。
亂碼的另一種解決辦法:
request.setCharacterEncoding("UTF-8"),這句話熟悉么,這句話的意思是:用"utf-8"編碼對客戶端的請求進行重新解碼。
在步驟2之后(或步驟3中)執行,那么接收到的參數也不會亂碼啦。
一個小例子:
import java.io.UnsupportedEncodingException; public class ConvertEncodingFormat { /** * 將一段錯誤解碼的字符串重新解碼 */ public static String convertEncodingFormat(String str, String formatFrom, String FormatTo) { String result = null; if (!(str == null || str.length() == 0)) { try { result = new String(str.getBytes(formatFrom), FormatTo); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } } return result; } /** * test */ public static void main(String[] args) { // utf-8編碼 String str = "你好,少年!"; // UTF-8編碼的byte流強行用iso-8859-1解碼,毫無疑問的亂碼了 String str1 = convertEncodingFormat(str, "UTF-8", "iso-8859-1"); System.out.println(str1); // 將str1再轉化為byte流,重新用UTF-8解碼,亂碼問題解決 String str2 = convertEncodingFormat(str1, "iso-8859-1", "UTF-8"); System.out.println(str2); } }
java字符串的各種編碼轉換
import java.io.UnsupportedEncodingException; /** * 轉換字符串的編碼 */ public class ChangeCharset { /** 7位ASCII字符,也叫作ISO646-US、Unicode字符集的基本拉丁塊 */ public static final String US_ASCII = "US-ASCII"; /** ISO 拉丁字母表 No.1,也叫作 ISO-LATIN-1 */ public static final String ISO_8859_1 = "ISO-8859-1"; /** 8 位 UCS 轉換格式 */ public static final String UTF_8 = "UTF-8"; /** 16 位 UCS 轉換格式,Big Endian(最低地址存放高位字節)字節順序 */ public static final String UTF_16BE = "UTF-16BE"; /** 16 位 UCS 轉換格式,Little-endian(最高地址存放低位字節)字節順序 */ public static final String UTF_16LE = "UTF-16LE"; /** 16 位 UCS 轉換格式,字節順序由可選的字節順序標記來標識 */ public static final String UTF_16 = "UTF-16"; /** 中文超大字符集 */ public static final String GBK = "GBK"; /** * 將字符編碼轉換成US-ASCII碼 */ public String toASCII(String str) throws UnsupportedEncodingException{ return this.changeCharset(str, US_ASCII); } /** * 將字符編碼轉換成ISO-8859-1碼 */ public String toISO_8859_1(String str) throws UnsupportedEncodingException{ return this.changeCharset(str, ISO_8859_1); } /** * 將字符編碼轉換成UTF-8碼 */ public String toUTF_8(String str) throws UnsupportedEncodingException{ return this.changeCharset(str, UTF_8); } /** * 將字符編碼轉換成UTF-16BE碼 */ public String toUTF_16BE(String str) throws UnsupportedEncodingException{ return this.changeCharset(str, UTF_16BE); } /** * 將字符編碼轉換成UTF-16LE碼 */ public String toUTF_16LE(String str) throws UnsupportedEncodingException{ return this.changeCharset(str, UTF_16LE); } /** * 將字符編碼轉換成UTF-16碼 */ public String toUTF_16(String str) throws UnsupportedEncodingException{ return this.changeCharset(str, UTF_16); } /** * 將字符編碼轉換成GBK碼 */ public String toGBK(String str) throws UnsupportedEncodingException{ return this.changeCharset(str, GBK); } /** * 字符串編碼轉換的實現方法 * @param str 待轉換編碼的字符串 * @param newCharset 目標編碼 * @return * @throws UnsupportedEncodingException */ public String changeCharset(String str, String newCharset) throws UnsupportedEncodingException { if (str != null) { //用默認字符編碼解碼字符串。 byte[] bs = str.getBytes(); //用新的字符編碼生成字符串 return new String(bs, newCharset); } return null; } /** * 字符串編碼轉換的實現方法 * @param str 待轉換編碼的字符串 * @param oldCharset 原編碼 * @param newCharset 目標編碼 * @return * @throws UnsupportedEncodingException */ public String changeCharset(String str, String oldCharset, String newCharset) throws UnsupportedEncodingException { if (str != null) { //用舊的字符編碼解碼字符串。解碼可能會出現異常。 byte[] bs = str.getBytes(oldCharset); //用新的字符編碼生成字符串 return new String(bs, newCharset); } return null; } public static void main(String[] args) throws UnsupportedEncodingException { ChangeCharset test = new ChangeCharset(); String str = "This is a 中文的 String!"; System.out.println("str: " + str); String gbk = test.toGBK(str); System.out.println("轉換成GBK碼: " + gbk); System.out.println(); String ascii = test.toASCII(str); System.out.println("轉換成US-ASCII碼: " + ascii); gbk = test.changeCharset(ascii,ChangeCharset.US_ASCII, ChangeCharset.GBK); System.out.println("再把ASCII碼的字符串轉換成GBK碼: " + gbk); System.out.println(); String iso88591 = test.toISO_8859_1(str); System.out.println("轉換成ISO-8859-1碼: " + iso88591); gbk = test.changeCharset(iso88591,ChangeCharset.ISO_8859_1, ChangeCharset.GBK); System.out.println("再把ISO-8859-1碼的字符串轉換成GBK碼: " + gbk); System.out.println(); String utf8 = test.toUTF_8(str); System.out.println("轉換成UTF-8碼: " + utf8); gbk = test.changeCharset(utf8,ChangeCharset.UTF_8, ChangeCharset.GBK); System.out.println("再把UTF-8碼的字符串轉換成GBK碼: " + gbk); System.out.println(); String utf16be = test.toUTF_16BE(str); System.out.println("轉換成UTF-16BE碼:" + utf16be); gbk = test.changeCharset(utf16be,ChangeCharset.UTF_16BE, ChangeCharset.GBK); System.out.println("再把UTF-16BE碼的字符串轉換成GBK碼: " + gbk); System.out.println(); String utf16le = test.toUTF_16LE(str); System.out.println("轉換成UTF-16LE碼:" + utf16le); gbk = test.changeCharset(utf16le,ChangeCharset.UTF_16LE, ChangeCharset.GBK); System.out.println("再把UTF-16LE碼的字符串轉換成GBK碼: " + gbk); System.out.println(); String utf16 = test.toUTF_16(str); System.out.println("轉換成UTF-16碼:" + utf16); gbk = test.changeCharset(utf16,ChangeCharset.UTF_16LE, ChangeCharset.GBK); System.out.println("再把UTF-16碼的字符串轉換成GBK碼: " + gbk); String s = new String("中文".getBytes("UTF-8"),"UTF-8"); System.out.println(s); } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。