程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Java將字節轉換為十六進制代碼分享

Java將字節轉換為十六進制代碼分享

編輯:關於JAVA

Java將字節轉換為十六進制代碼分享。本站提示廣大學習愛好者:(Java將字節轉換為十六進制代碼分享)文章只能為提供參考,不一定能成為您想要的結果。以下是Java將字節轉換為十六進制代碼分享正文


本文部門代碼摘錄自網上,並略加整頓,用於字節與十六進制之間的轉換。

/**
 * 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);
  }
 
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved