Android Byte Array to Hex Convert toHexString(byte[] b)

Here you can find the source of toHexString(byte[] b)

Description

to Hex String

Declaration

private static String toHexString(byte[] b) 

Method Source Code

//package com.java2s;

public class Main {
    private static String toHexString(byte[] b) { // String to byte
        char HEX_DIGITS[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8',
                '9', 'A', 'B', 'C', 'D', 'E', 'F' };

        StringBuilder sb = new StringBuilder(b.length * 2);
        for (int i = 0; i < b.length; i++) {
            sb.append(HEX_DIGITS[(b[i] & 0xf0) >>> 4]);
            sb.append(HEX_DIGITS[b[i] & 0x0f]);
        }//  www.j  a  va  2 s .  co  m
        return sb.toString();
    }
}

Related

  1. byteArrayToHexString(byte[] b)
  2. getHexString(byte[] raw)
  3. byte2hex(byte[] b)
  4. bytes2HexString(byte[] data)
  5. bytes2HexString(byte[] data)
  6. byteArrayToHexString(byte[] data)
  7. bytesToHexString(byte[] bArray)
  8. toHexadecimealString(byte[] data)
  9. bytesToHex(byte[] bytes)