Android Byte Array to Hex Convert bytesToHex(byte[] bytes)

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

Description

bytes To Hex

Declaration

public static String bytesToHex(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {
    final protected static char[] hexArray = "0123456789ABCDEF"
            .toCharArray();//  www . j ava 2 s  . c o  m

    public static String bytesToHex(byte[] bytes) {
        char[] hexChars = new char[bytes.length * 2];
        for (int j = 0; j < bytes.length; j++) {
            int v = bytes[j] & 0xFF;
            hexChars[j * 2] = hexArray[v >>> 4];
            hexChars[j * 2 + 1] = hexArray[v & 0x0F];
        }
        return new String(hexChars);
    }
}

Related

  1. byteToHexString(Byte b)
  2. byteToHexString(byte b)
  3. byteToHexString(byte value)
  4. bytesToHex(byte[] bytes)
  5. bytesToHex(byte[] bytes)
  6. bytesToHexString(byte[] b)
  7. bytesToHexString(byte[] src)
  8. bytesToHexString(byte[] src)
  9. bytesToHexString(byte[] values)