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

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

Description

bytes To Hex String

Parameter

Parameter Description
bytes a parameter

Declaration

public static String bytesToHexString(byte[] bytes) 

Method Source Code

//package com.java2s;
import java.io.UnsupportedEncodingException;

public class Main {

    public static String bytesToHexString(byte[] bytes) {
        StringBuilder sb = new StringBuilder("");

        if (bytes == null || bytes.length <= 0) {
            return null;
        }//from   w  ww.  ja  va 2  s . co  m

        for (int i = 0; i < bytes.length; i++) {
            int v = bytes[i] & 0xFF;
            String hv = Integer.toHexString(v);
            if (hv.length() < 2) {
                sb.append(0);
            }
            sb.append(hv);
        }

        return sb.toString();
    }

    public static String toHexString(String str) {
        byte[] byteArray;
        try {
            byteArray = str.getBytes("utf-8");
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
            byteArray = str.getBytes();
        }
        return bytesToHexString(byteArray);
    }
}

Related

  1. toHexString(byte[] b)
  2. bytesToHexString(byte[] src)
  3. ConvertHexString(byte[] b)
  4. getHexStringOfByte(byte[] bytes)
  5. bytesToHexString(byte[] bytes)
  6. convertToHex(byte[] data)
  7. toHex(final byte[] bytes)
  8. byteArrayToHexString(byte[] b)
  9. toHexString(byte abyte0[], int beginIndex, int endIndex, boolean spaceFlag)