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

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

Description

bytes To Hex String

License

Apache License

Declaration

public static String bytesToHexString(byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public 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 2s .c om*/
            sb.append(hex);
        }
        return sb.toString();
    }
}

Related

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