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

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

Description

bytehex

Declaration

public static String byte2hex(byte[] b) 

Method Source Code

//package com.java2s;

public class Main {

    public static String byte2hex(byte[] b) {
        String hs = "";
        String stmp = "";
        for (int n = 0; n < b.length; n++) {
            stmp = (java.lang.Integer.toHexString(b[n] & 0XFF));
            if (stmp.length() == 1)
                hs = hs + "0" + stmp;
            else//ww w . jav  a  2  s.  c  o m
                hs = hs + stmp;
        }
        return hs.toUpperCase();
    }
}

Related

  1. dumpHex(byte[] bytes)
  2. getBinaryStrFromByteArr(byte[] bArr)
  3. toHex(byte[] buf)
  4. toHex(byte[] buf)
  5. byte2hex(byte[] b)
  6. hexEncode(byte[] data)
  7. encodeHex(byte[] data)
  8. decodeHex(char[] data)
  9. bytesToHex(byte[] data)