編碼轉換工具類
阿新 • • 發佈:2019-02-17
import java.io.ByteArrayOutputStream; import java.io.OutputStreamWriter; import java.io.UnsupportedEncodingException; import org.springframework.util.StringUtils; /** * Description: * 編碼相關的封裝類 */ public final class CharsetUtil { /** * 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 final static String toASCII(String str) throws UnsupportedEncodingException { return changeCharset(str, US_ASCII); } /** * 將字元編碼轉換成ISO-8859-1碼 */ public final static String toISO_8859_1(String str) throws UnsupportedEncodingException { return changeCharset(str, ISO_8859_1); } /** * 將字元編碼轉換成UTF-8碼 */ public static String toUTF_8(String str) throws UnsupportedEncodingException { return changeCharset(str, UTF_8); } /** * 將字元編碼轉換成UTF-16BE碼 */ public final static String toUTF_16BE(String str) throws UnsupportedEncodingException { return changeCharset(str, UTF_16BE); } /** * 將字元編碼轉換成UTF-16LE碼 */ public final static String toUTF_16LE(String str) throws UnsupportedEncodingException { return changeCharset(str, UTF_16LE); } /** * 將字元編碼轉換成UTF-16碼 */ public final static String toUTF_16(String str) throws UnsupportedEncodingException { return changeCharset(str, UTF_16); } /** * 將字元編碼轉換成GBK碼 */ public final static String toGBK(String str) throws UnsupportedEncodingException { return changeCharset(str, GBK); } /** * 字串編碼轉換的實現方法 * * @param str 待轉換編碼的字串 * @param newCharset 目標編碼 * @return * @throws UnsupportedEncodingException */ public final static 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 final static 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; } /** * Unicode轉換成GBK字符集 * * @param input 待轉換字串 * @return 轉換完成字串 */ public final static String toGBKWithUTF8(String input) throws UnsupportedEncodingException { if (StringUtils.isEmpty(input)) { return ""; } else { String s1; s1 = new String(input.getBytes("ISO8859_1"), "GBK"); return s1; } } /** * GBK轉換成Unicode字符集 * * @param input 待轉換字串 * @return 轉換完成字串 */ public final static String toUnicodeWithGBK(String input) throws UnsupportedEncodingException { if (StringUtils.isEmpty(input)) { return ""; } else { String s1; s1 = new String(input.getBytes("GBK"), "ISO8859_1"); return s1; } } }