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

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

Description

bytes To Hex String

Parameter

Parameter Description
b a parameter

Declaration

public static final String bytesToHexString(byte[] b) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*from ww w  .  j ava 2  s  .  c  o  m*/
     *
     * @param b
     * @return
     */
    public static final String bytesToHexString(byte[] b) {
        StringBuffer sb = new StringBuffer(b.length);
        String str;

        for (int i = 0; i < b.length; i++) {
            str = Integer.toHexString(0xFF & b[i]);
            if (str.length() < 2) {
                sb.append(0);
            }
            sb.append(str.toUpperCase());
        }

        return sb.toString();
    }
}

Related

  1. byteToHexString(byte b)
  2. byteToHexString(byte value)
  3. bytesToHex(byte[] bytes)
  4. bytesToHex(byte[] bytes)
  5. bytesToHex(byte[] bytes)
  6. bytesToHexString(byte[] src)
  7. bytesToHexString(byte[] src)
  8. bytesToHexString(byte[] values)
  9. bytesAsHexString(byte[] bytes, int maxShowBytes)