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

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

Description

bytes To Hex String

Declaration

public static String bytesToHexString(byte[] src) 

Method Source Code

//package com.java2s;

public class Main {

    public static String bytesToHexString(byte[] src) {
        StringBuilder stringBuilder = new StringBuilder("");
        if (src == null || src.length <= 0) {
            return null;
        }//  w  w  w .  j a va  2s  .  c  o  m
        for (int i = 0; i < src.length; i++) {
            int v = src[i] & 0xFF;
            String hv = Integer.toHexString(v);
            if (hv.length() < 2) {
                stringBuilder.append(0);
            }
            stringBuilder.append(hv + " ");
        }
        return stringBuilder.toString();
    }
}

Related

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