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

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

Description

bytes To Hex String

License

Apache License

Declaration

public static String bytesToHexString(byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

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 bytesToHexString(byte[] bytes) {
        char[] hexChars = new char[bytes.length * 2];
        int v;/* www. jav  a2s .  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. bytes2hex(byte[] bytes)
  2. bytesToHex(byte[] bytes)
  3. bytesToHex(byte[] data)
  4. bytesToHex(byte[] data)
  5. bytesToHex(byte[] data, int offset, int length)
  6. bytesToHexString(byte[] bytes)
  7. bytesToHexString(byte[] bytes)
  8. bytesToHexString(byte[] bytes)
  9. byte2HexStr(byte[] b)