java字串編碼轉換程式碼

來源:互聯網
上載者:User

1、當前流行的字元編碼格式有:US-ASCII、ISO-8859-1、UTF-8、UTF-16BE、UTF-16LE、UTF-16、GBK、GB2312等,其

中GBK、GB2312是專門處理中文編碼的。
2、String的getBytes方法用於按指定編碼擷取字串的位元組數組,參數指定瞭解碼格式,如果沒有指定解碼格式,則

按系統預設編碼格式。
3、String的“String(bytes[] bs, String charset)”構造方法用於把位元組數組按指定的格式組合成一個字串對象

 代碼如下 複製代碼

package com.using.test;
import java.io.UnsupportedEncodingException;

/**
 * 轉換字串的編碼
 */
public class ConverStr {
 
 public static void main(String[] args) throws UnsupportedEncodingException {
  ConverStr test = new ConverStr();
  String str = "u9519u8befu7684u6765u6e90";
  
  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, ConverStr.US_ASCII, ConverStr.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, ConverStr.ISO_8859_1, ConverStr.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, ConverStr.UTF_8, ConverStr.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, ConverStr.UTF_16BE, ConverStr.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, ConverStr.UTF_16LE, ConverStr.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, ConverStr.UTF_16LE, ConverStr.GBK);
  System.out.println("再把UTF-16碼的字串轉換成GBK碼: " + gbk);
  String s = new String("中文".getBytes("UTF-8"), "UTF-8");
  System.out.println(s);
 }
 
 /** 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;
 }
}

例2

 

 代碼如下 複製代碼

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碼來源:www.examda.com
  */
  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);

不要採取下面的步驟。

 代碼如下 複製代碼

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,中間多了好多步驟

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.