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

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

Description

byte Array To Hex String

License

Open Source License

Declaration

public static String byteArrayToHexString(byte[] bytes) 

Method Source Code

//package com.java2s;

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

    public static String byteArrayToHexString(byte[] bytes) {
        char[] hexChars = new char[bytes.length * 2];
        int v;//from w w  w  .java 2  s  .  c  o m

        for (int j = 0; j < bytes.length; j++) {
            v = bytes[j] & 0xFF;
            hexChars[j * 2] = hexArray[v >>> 4];
            hexChars[j * 2 + 1] = hexArray[v & 0x0F];
        }

        return new String(hexChars);
    }
}

Related

  1. bytesToHex(byte[] data)
  2. bytesToHexString(byte[] bytesArray)
  3. parseByte2HexStr(byte buf[])
  4. bytesToHex(byte[] bytes)
  5. bytesToHex(byte[] bytes, boolean withSpaces)
  6. byteArrayToHexString(byte[] bytes)
  7. bytesToHex(byte[] data)
  8. convertToHex(byte[] in)
  9. convertToHex(byte[] raw)