萬能java字串編碼轉換工具類
package com.zuidaima.util;
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工具類之編碼轉換工具類Java
- 萬能格式轉換工具
- Java 正確的做字串編碼轉換Java字串編碼
- 萬能媒體格式轉換工具
- 字串與日期型別轉換的工具類字串型別
- java字元編碼轉換Java字元
- 萬能媒體格式轉換工具Permute 3 for MacMac
- php 的字元編碼轉換工具 (轉)PHP字元
- java編碼之間轉換Java
- 文字編碼轉換工具iconv 附批量轉換檔案編碼命令
- Java常用時間格式轉換工具類Java
- js將字串轉換為編碼序列程式碼例項JS字串
- Date轉換工具類
- mysql和oracle字串編碼轉換函式,字串轉位元組函式例子MySqlOracle字串編碼函式
- 編碼轉換
- java 解析SOAP字串指定標籤轉換為實體類Java字串
- 型別轉換工具類型別
- java工具類編寫思考Java
- Java字串編碼介紹Java字串編碼
- 萬能音訊轉換器Permute 3音訊
- java進位制、編碼轉換記錄Java
- Java 浮點到字串轉換Java字串
- java安全編碼指南之:字串和編碼Java字串
- Java--包裝類(基本型別和字串之間的轉換)、進位制轉換Java型別字串
- 字元編碼轉換字元
- URL編碼轉換
- java json字串轉換為物件,轉換為listJavaJSON字串物件
- LocalDateTime工具類(常用轉換)LDA
- 字串值提取工具-04-java 呼叫 java? Janino 編譯工具字串Java編譯
- Permute 3 for mac萬能音影片轉換器Mac
- Permute 3 for mac 萬能音影片轉換器Mac
- Mac萬能音影片轉換器:Permute 3Mac
- Mac系統下檔案編碼轉換工具encaMac
- Babel 所有 外掛Plugins,也就編碼轉換工具BabelPlugin
- Java String類,字串常量池,建立方法,字串的獲取,擷取,轉換,分割。Java字串
- java 字串與檔案相互轉換Java字串
- 小工具實戰-Python 實現小工具輸出字串大小寫轉換、字串統計、編解碼、MD5 加密Python字串加密
- 萬能 JavaJava