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 . ja v a  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. bytesToHex(byte[] bytes)
  2. bytesToHex(byte[] bytes)
  3. bytesToHex(byte[] bytes)
  4. bytesToHexString(byte[] b)
  5. bytesToHexString(byte[] src)
  6. bytesToHexString(byte[] values)
  7. bytesAsHexString(byte[] bytes, int maxShowBytes)
  8. toHexString(byte[] bytes)
  9. toHexString(byte[] bytes)