本文部分代碼摘錄自網上,並稍加整理,用於位元組與十六進位之間的轉換。
/** * reference apache commons <a * href="http://commons.apache.org/codec/">http://commons.apache.org/codec/</a> * * byte佔用8位,十六進位字元佔用4位。所以可以把一個byte轉換成兩個相應的十六進位字元,即把byte的高4位和低4位 * 分別轉換成相應的十六進位字元H和L,並組合起來。相反的轉換也是同理。 * */public class Hex { /** * 用於建立十六進位字元的輸出 */ private static final char[] DIGITS_LOWER = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; /** * 用於建立十六進位字元的輸出 */ private static final char[] DIGITS_UPPER = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; /** * 將位元組數群組轉換為十六進位字元數組。 * * 因為使用兩個字元表示一個位元組,所以返回的char[]長度將是參數byte[]長度的兩倍。 * * @param data * 用於轉換為十六進位字元的byte[] * @return 包含十六進位字元的char[] */ public static char[] encodeHex(final byte[] data) { return encodeHex(data, true); } /** * 將位元組數群組轉換為十六進位字元數組。 * * 因為使用兩個字元表示一個位元組,所以返回的char[]長度將是參數byte[]長度的兩倍。 * * @param data * 用於轉換為十六進位字元的byte[] * @param toLowerCase * <code>true</code> 傳換成小寫格式 , <code>false</code> 傳換成大寫格式 * @return 包含十六進位字元的char[] */ public static char[] encodeHex(final byte[] data, final boolean toLowerCase) { return encodeHex(data, toLowerCase ? DIGITS_LOWER : DIGITS_UPPER); } /** * 將位元組數群組轉換為十六進位字元數組。 * * 因為使用兩個字元表示一個位元組,所以返回的char[]長度將是參數byte[]長度的兩倍。 * * @param data * 用於轉換為十六進位字元的byte[] * @param toDigits * 用於控制輸出的字母表 * @return 包含十六進位字元的char[] */ protected static char[] encodeHex(final byte[] data, final char[] toDigits) { int l = data.length; char[] out = new char[l << 1]; // two characters form the hex value. for (int i = 0, j = 0; i < l; i++) { out[j++] = toDigits[(0xF0 & data[i]) >>> 4]; out[j++] = toDigits[0x0F & data[i]]; } return out; } /** * 將位元組數群組轉換為十六進位字串。 * * 因為使用兩個字元表示一個位元組,所以返回的的字串長度將是參數byte[]長度的兩倍。 * * @param data * 用於轉換為十六進位字元的byte[] * @return 十六進位字串 */ public static String encodeHexStr(final byte[] data) { return encodeHexStr(data, true); } /** * 將位元組數群組轉換為十六進位字串。 * * 因為使用兩個字元表示一個位元組,所以返回的的字串長度將是參數byte[]長度的兩倍。 * * @param data * 用於轉換為十六進位字元的byte[] * @param toLowerCase * <code>true</code> 傳換成小寫格式 , <code>false</code> 傳換成大寫格式 * @return 十六進位字串 */ public static String encodeHexStr(byte[] data, boolean toLowerCase) { return encodeHexStr(data, toLowerCase ? DIGITS_LOWER : DIGITS_UPPER); } /** * 將位元組數群組轉換為十六進位字串。 * * 因為使用兩個字元表示一個位元組,所以返回的的字串長度將是參數byte[]長度的兩倍。 * * @param data * 用於轉換為十六進位字元的byte[] * @param toDigits * 用於控制輸出的字母表 * @return 十六進位字串 */ protected static String encodeHexStr(byte[] data, char[] toDigits) { return new String(encodeHex(data, toDigits)); } /** * 將十六進位字元數群組轉換為位元組數組 * * @param data * 十六進位char[] * @return byte[] * @throws RuntimeException * 如果源十六進位字元數組的長度是奇數,將拋出運行時異常 */ public static byte[] decodeHex(char[] data) { int len = data.length; if ((len & 0x01) != 0) { throw new RuntimeException("Odd number of characters."); } // 一個byte對應兩個十六進位字元,則將byte[]大小設定為char[]大小的一半 byte[] out = new byte[len >> 1]; // two characters form the hex value. for (int i = 0, j = 0; j < len; i++) { int f = toDigit(data[j], j) << 4; j++; f = f | toDigit(data[j], j); j++; out[i] = (byte) (f & 0xFF); } return out; } /** * 將十六進位字元轉換成一個整數。 * * @param ch * 要轉換成整數的字元 * @param index * 字元在字元數組中的位置 * @return 一個整數 * @throws RuntimeException * 當ch不是一個合法的十六進位字元時,拋出該異常 */ protected static int toDigit(final char ch, final int index) { final int digit = Character.digit(ch, 16); if (digit == -1) { throw new RuntimeException("Illegal hexadecimal character " + ch + " at index " + index); } return digit; } public static void main(String[] args) { String srcStr = "HelloWorld!"; String encodeStr = encodeHexStr(srcStr.getBytes(), false); String decodeStr = new String(decodeHex(encodeStr.toCharArray())); System.out.println("源字串:" + srcStr); System.out.println("字串編碼為十六進位:" + encodeStr); System.out.println("十六進位解碼為字串:" + decodeStr); } }