1 <dependency> 2 <groupId>commons-codec</groupId> 3 <artifactId>commons-codec</artifactId> 4 <version>1.12</version> 5 </dependency>
1 /** 2 * 將普通字符串轉換爲16進制字符串 3 * @param str 普通字符串 4 * @param lowerCase 轉換後的字母爲是否爲小寫 可不傳默認爲true 5 * @param charset 編碼格式 可不傳默認爲Charset.defaultCharset() 6 * @return 7 * @throws UnsupportedEncodingException 8 */ 9 public static String str2HexStr(String str,boolean lowerCase,String charset) throws UnsupportedEncodingException { 10 return Hex.encodeHexString(str.getBytes(charset),lowerCase); 11 }
/** * 將16進制字符串轉換爲普通字符串 * @param hexStr 16進制字符串 * @param charset 編碼格式 可不傳默認爲Charset.defaultCharset() * @return * @throws DecoderException * @throws UnsupportedEncodingException */ public static String hexStr2Str(String hexStr,String charset) throws DecoderException, UnsupportedEncodingException { byte[] bytes = Hex.decodeHex(hexStr); return new String(bytes,charset); }
1 /** 2 * 將16進制字符串轉換爲byte數組 3 * @param hexItr 16進制字符串 4 * @return 5 */ 6 public static byte[] hexItr2Arr(String hexItr) throws DecoderException { 7 return Hex.decodeHex(hexItr); 8 }
1 /** 2 * byte數組轉化爲16進制字符串 3 * @param arr 數組 4 * @param lowerCase 轉換後的字母爲是否爲小寫 可不傳默認爲true 5 * @return 6 */ 7 public static String arr2HexStr(byte[] arr,boolean lowerCase){ 8 return Hex.encodeHexString(arr, lowerCase); 9 }
1 /** 2 * 將普通字符串轉換爲指定格式的byte數組 3 * @param str 普通字符串 4 * @param charset 編碼格式 可不傳默認爲Charset.defaultCharset() 5 * @return 6 * @throws UnsupportedEncodingException 7 */ 8 public static byte[] str2Arr(String str,String charset) throws UnsupportedEncodingException { 9 return str.getBytes(charset); 10 }
1 /** 2 * 將byte數組轉換爲指定編碼格式的普通字符串 3 * @param arr byte數組 4 * @param charset 編碼格式 可不傳默認爲Charset.defaultCharset() 5 * @return 6 * @throws UnsupportedEncodingException 7 */ 8 public static String arr2Str(byte[] arr,String charset) throws UnsupportedEncodingException { 9 return new String(arr,charset); 10 }