提交服務器請求中文字符亂碼,需要進行編碼轉換

  1. import java.io.UnsupportedEncodingException;  
  2.   
  3. /** 
  4.  * 轉換字符串的編碼 
  5.  */  
  6. public class ChangeCharset {  
  7.  /** 7位ASCII字符,也叫作ISO646-US、Unicode字符集的基本拉丁塊 */  
  8.  public static final String US_ASCII = "US-ASCII";  
  9.   
  10.  /** ISO 拉丁字母表 No.1,也叫作 ISO-LATIN-1 */  
  11.  public static final String ISO_8859_1 = "ISO-8859-1";  
  12.   
  13.  /** 8 位 UCS 轉換格式 */  
  14.  public static final String UTF_8 = "UTF-8";  
  15.   
  16.  /** 16 位 UCS 轉換格式,Big Endian(最低地址存放高位字節)字節順序 */  
  17.  public static final String UTF_16BE = "UTF-16BE";  
  18.   
  19.  /** 16 位 UCS 轉換格式,Little-endian(最高地址存放低位字節)字節順序 */  
  20.  public static final String UTF_16LE = "UTF-16LE";  
  21.   
  22.  /** 16 位 UCS 轉換格式,字節順序由可選的字節順序標記來標識 */  
  23.  public static final String UTF_16 = "UTF-16";  
  24.   
  25.  /** 中文超大字符集 */  
  26.  public static final String GBK = "GBK";  
  27.   
  28.  /** 
  29.   * 將字符編碼轉換成US-ASCII碼 
  30.   */  
  31.  public String toASCII(String str) throws UnsupportedEncodingException{  
  32.   return this.changeCharset(str, US_ASCII);  
  33.  }  
  34.  /** 
  35.   * 將字符編碼轉換成ISO-8859-1碼 
  36.   */  
  37.  public String toISO_8859_1(String str) throws UnsupportedEncodingException{  
  38.   return this.changeCharset(str, ISO_8859_1);  
  39.  }  
  40.  /** 
  41.   * 將字符編碼轉換成UTF-8碼 
  42.   */  
  43.  public String toUTF_8(String str) throws UnsupportedEncodingException{  
  44.   return this.changeCharset(str, UTF_8);  
  45.  }  
  46.  /** 
  47.   * 將字符編碼轉換成UTF-16BE碼 
  48.   */  
  49.  public String toUTF_16BE(String str) throws UnsupportedEncodingException{  
  50.   return this.changeCharset(str, UTF_16BE);  
  51.  }  
  52.  /** 
  53.   * 將字符編碼轉換成UTF-16LE碼 
  54.   */  
  55.  public String toUTF_16LE(String str) throws UnsupportedEncodingException{  
  56.   return this.changeCharset(str, UTF_16LE);  
  57.  }  
  58.  /** 
  59.   * 將字符編碼轉換成UTF-16碼 
  60.   */  
  61.  public String toUTF_16(String str) throws UnsupportedEncodingException{  
  62.   return this.changeCharset(str, UTF_16);  
  63.  }  
  64.  /** 
  65.   * 將字符編碼轉換成GBK碼 
  66.   */  
  67.  public String toGBK(String str) throws UnsupportedEncodingException{  
  68.   return this.changeCharset(str, GBK);  
  69.  }  
  70.    
  71.  /** 
  72.   * 字符串編碼轉換的實現方法 
  73.   * @param str  待轉換編碼的字符串 
  74.   * @param newCharset 目標編碼 
  75.   * @return 
  76.   * @throws UnsupportedEncodingException 
  77.   */  
  78.  public String changeCharset(String str, String newCharset)  
  79.    throws UnsupportedEncodingException {  
  80.   if (str != null) {  
  81.    //用默認字符編碼解碼字符串。  
  82.    byte[] bs = str.getBytes();  
  83.    //用新的字符編碼生成字符串  
  84.    return new String(bs, newCharset);  
  85.   }  
  86.   return null;  
  87.  }  
  88.  /** 
  89.   * 字符串編碼轉換的實現方法 
  90.   * @param str  待轉換編碼的字符串 
  91.   * @param oldCharset 原編碼 
  92.   * @param newCharset 目標編碼 
  93.   * @return 
  94.   * @throws UnsupportedEncodingException 
  95.   */  
  96.  public String changeCharset(String str, String oldCharset, String newCharset)  
  97.    throws UnsupportedEncodingException {  
  98.   if (str != null) {  
  99.    //用舊的字符編碼解碼字符串。解碼可能會出現異常。  
  100.    byte[] bs = str.getBytes(oldCharset);  
  101.    //用新的字符編碼生成字符串  
  102.    return new String(bs, newCharset);  
  103.   }  
  104.   return null;  
  105.  }  
  106.   
  107.  public static void main(String[] args) throws UnsupportedEncodingException {  
  108.   ChangeCharset test = new ChangeCharset();  
  109.   String str = "This is a 中文的 String!";  
  110.   System.out.println("str: " + str);  
  111.   String gbk = test.toGBK(str);  
  112.   System.out.println("轉換成GBK碼: " + gbk);  
  113.   System.out.println();  
  114.   String ascii = test.toASCII(str);  
  115.   System.out.println("轉換成US-ASCII碼: " + ascii);  
  116.   gbk = test.changeCharset(ascii,ChangeCharset.US_ASCII, ChangeCharset.GBK);  
  117.   System.out.println("再把ASCII碼的字符串轉換成GBK碼: " + gbk);  
  118.   System.out.println();  
  119.   String iso88591 = test.toISO_8859_1(str);  
  120.   System.out.println("轉換成ISO-8859-1碼: " + iso88591);  
  121.   gbk = test.changeCharset(iso88591,ChangeCharset.ISO_8859_1, ChangeCharset.GBK);  
  122.   System.out.println("再把ISO-8859-1碼的字符串轉換成GBK碼: " + gbk);  
  123.   System.out.println();  
  124.   String utf8 = test.toUTF_8(str);  
  125.   System.out.println("轉換成UTF-8碼: " + utf8);  
  126.   gbk = test.changeCharset(utf8,ChangeCharset.UTF_8, ChangeCharset.GBK);  
  127.   System.out.println("再把UTF-8碼的字符串轉換成GBK碼: " + gbk);  
  128.   System.out.println();  
  129.   String utf16be = test.toUTF_16BE(str);  
  130.   System.out.println("轉換成UTF-16BE碼:" + utf16be);  
  131.   gbk = test.changeCharset(utf16be,ChangeCharset.UTF_16BE, ChangeCharset.GBK);  
  132.   System.out.println("再把UTF-16BE碼的字符串轉換成GBK碼: " + gbk);  
  133.   System.out.println();  
  134.   String utf16le = test.toUTF_16LE(str);  
  135.   System.out.println("轉換成UTF-16LE碼:" + utf16le);  
  136.   gbk = test.changeCharset(utf16le,ChangeCharset.UTF_16LE, ChangeCharset.GBK);  
  137.   System.out.println("再把UTF-16LE碼的字符串轉換成GBK碼: " + gbk);  
  138.   System.out.println();  
  139.   String utf16 = test.toUTF_16(str);  
  140.   System.out.println("轉換成UTF-16碼:" + utf16);  
  141.   gbk = test.changeCharset(utf16,ChangeCharset.UTF_16LE, ChangeCharset.GBK);  
  142.   System.out.println("再把UTF-16碼的字符串轉換成GBK碼: " + gbk);  
  143.   String s = new String("中文".getBytes("UTF-8"),"UTF-8");  
  144.   System.out.println(s);  
  145.  }  
  146. }  
   
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);
 }
}



------------------------------------------------------------------------------------------------------------------


        java中的String類是按照unicode進行編碼的,當使用String(byte[] bytes, String encoding)構造字符串時,encoding所指的是bytes中的數據是按照那種方式編碼的,而不是最後產生的String是什麼編碼方式,換句話說,是讓系統把bytes中的數據由encoding編碼方式轉換成unicode編碼。如果不指明,bytes的編碼方式將由jdk根據操作系統決定。

        當我們從文件中讀數據時,最好使用InputStream方式,然後採用String(byte[] bytes, String encoding)指明文件的編碼方式。不要使用Reader方式,因爲Reader方式會自動根據jdk指明的編碼方式把文件內容轉換成unicode編碼。

        當我們從數據庫中讀文本數據時,採用ResultSet.getBytes()方法取得字節數組,同樣採用帶編碼方式的字符串構造方法即可。

ResultSet rs;
bytep[] bytes = rs.getBytes();
String str = new String(bytes, "gb2312");

不要採取下面的步驟。

ResultSet rs;
String str = rs.getString();
str = new String(str.getBytes("iso8859-1"), "gb2312");

        這種編碼轉換方式效率底。之所以這麼做的原因是,ResultSet在getString()方法執行時,默認數據庫裏的數據編碼方式爲iso8859-1。系統會把數據依照iso8859-1的編碼方式轉換成unicode。使用str.getBytes("iso8859-1")把數據還原,然後利用new String(bytes, "gb2312")把數據從gb2312轉換成unicode,中間多了好多步驟。

        從HttpRequest中讀參數時,利用reqeust.setCharacterEncoding()方法設置編碼方式,讀出的內容就是正確的了。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章