Java Byte Array to Hex bytesToHex(byte[] bytes)

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

Description

bytes To Hex

License

Open Source License

Declaration

public static String bytesToHex(byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static final char[] HEX = "0123456789abcdef".toCharArray();

    public static String bytesToHex(byte[] bytes) {
        char[] str = new char[bytes.length << 1];
        for (int i = 0, j = 0; i < bytes.length; i++) {
            str[j++] = HEX[(bytes[i] & 0xf0) >>> 4];
            str[j++] = HEX[bytes[i] & 0x0f];
        }/*  www  .jav  a  2 s  .c  o  m*/
        return new String(str);
    }
}

Related

  1. bytesToHex(byte[] bytes)
  2. bytesToHex(byte[] bytes)
  3. bytesToHex(byte[] bytes)
  4. bytesToHex(byte[] bytes)
  5. bytesToHex(byte[] bytes)
  6. bytesToHex(byte[] bytes)
  7. bytesToHex(byte[] bytes)
  8. bytesToHex(byte[] bytes)
  9. bytesToHex(byte[] bytes)