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

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

Description

bytes Hex PP

License

Open Source License

Declaration

public static String bytes2HexPP2(byte[] bytes) 

Method Source Code

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

public class Main {
    private final static char[] hexArray = "0123456789ABCDEF".toCharArray();

    public static String bytes2HexPP2(byte[] bytes) {
        //      if(bytes[0] == 0){
        //         bytes = Arrays.copyOfRange(bytes, 1, bytes.length-1);
        //      }
        char[] hexChars = new char[bytes.length * 3];
        for (int j = 0; j < bytes.length; j++) {
            int v = bytes[j] & 0xFF;
            hexChars[j * 3] = ' ';
            hexChars[j * 3 + 1] = hexArray[v >>> 4];
            hexChars[j * 3 + 2] = hexArray[v & 0x0F];
        }/*ww  w.j  a  v  a 2 s.c  om*/
        return new String(hexChars).substring(1);
    }
}

Related

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