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[] HEX = "0123456789ABCDEF".toCharArray();

    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] = HEX[v >>> 4];
            hexChars[j * 2 + 1] = HEX[v & 0x0F];
        }// w ww  . j  av a 2 s .  co m
        return new String(hexChars);
    }
}

Related

  1. bytes2HexString(byte[] data)
  2. toHexString(byte[] b)
  3. byteArrayToHexString(byte[] data)
  4. bytesToHexString(byte[] bArray)
  5. toHexadecimealString(byte[] data)
  6. byte2hex(byte buffer)
  7. byte2hex(byte[] b)
  8. byte2hex(byte[] buffer)
  9. byte2hex(byte[] buffer, int len)