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

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

Description

bytes To Hex String

Declaration

private static String bytesToHexString(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {
    private static String bytesToHexString(byte[] bytes) {
        StringBuilder sb = new StringBuilder();
        for (byte aByte : bytes) {
            String hex = Integer.toHexString(0xFF & aByte);
            if (hex.length() == 1) {
                sb.append('0');
            }//from  w  ww .j a v  a 2 s.c o m
            sb.append(hex);
        }
        return sb.toString();
    }
}

Related

  1. bytesToHex(byte[] data)
  2. bytesToHex(byte[] data)
  3. bytesToHex(byte[] data, int offset, int length)
  4. bytesToHexString(byte[] bytes)
  5. bytesToHexString(byte[] bytes)
  6. bytesToHexString(byte[] bytes)
  7. byte2HexStr(byte[] b)
  8. byte2HexStr(byte[] b, int length)
  9. byte2HexString(byte[] b)