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

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

Description

Convert Byte array to Hex (string)

Declaration

public static String bytesToHex(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {
    final protected static char[] hexArray = "0123456789ABCDEF"
            .toCharArray();/*from w  ww. ja  v a  2s.  c o  m*/

    /** Convert Byte array to Hex (string) */
    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. convertToHex(byte[] in)
  2. convertToHex(byte[] raw)
  3. bytes2Hex(byte[] bts)
  4. bytes2HexString(byte[] bytes)
  5. bytes2hex(byte[] bytes)
  6. bytesToHex(byte[] data)
  7. bytesToHex(byte[] data)
  8. bytesToHex(byte[] data, int offset, int length)
  9. bytesToHexString(byte[] bytes)