Java Byte Array to Hex bytes2HexStr(byte[] bytes)

Here you can find the source of bytes2HexStr(byte[] bytes)

Description

bytes Hex Str

License

Open Source License

Declaration

public static String bytes2HexStr(byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static final char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D',
            'E', 'F' };

    public static String bytes2HexStr(byte[] bytes) {
        if ((bytes == null) || (bytes.length == 0)) {
            return null;
        }//from  w  w w .ja  v a2 s  . co m

        char[] chars = new char[bytes.length * 2];
        for (int i = 0; i < bytes.length; i++) {
            byte b = bytes[i];
            chars[(i * 2 + 1)] = DIGITS[(b & 0xF)];
            b = (byte) (b >>> 4);
            chars[(i * 2)] = DIGITS[(b & 0xF)];
        }
        return new String(chars);
    }
}

Related

  1. bytes2Hex(byte[] bytes)
  2. bytes2Hex(byte[] bytes)
  3. bytes2HexCharArr(byte[] bytes)
  4. bytes2HexPP2(byte[] bytes)
  5. bytes2HexSplit(byte[] in, int wordlength)
  6. bytes2HexStr(byte[] bytes)
  7. bytes2HexString(byte... bytes)
  8. bytes2HexString(byte[] array)
  9. bytes2HexString(byte[] b)