Java Byte to Hex String byteToHexString(byte[] bytes)

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

Description

This methos used to convert byte array to hex string

License

Open Source License

Parameter

Parameter Description
bytes a parameter

Declaration

private static String byteToHexString(byte[] bytes) 

Method Source Code

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

public class Main {
    /**/*ww  w .  j ava 2s  .  c  om*/
     * This methos used to convert byte array to hex string
     * @param bytes
     * @return
     */
    private static String byteToHexString(byte[] bytes) {
        StringBuffer sb = new StringBuffer(bytes.length * 2);
        for (int i = 0; i < bytes.length; i++) {
            int v = bytes[i] & 0xff;
            if (v < 16) {
                sb.append('0');
            }
            sb.append(Integer.toHexString(v));
        }
        return sb.toString().toUpperCase();
    }
}

Related

  1. byteToHexString(byte src)
  2. byteToHexString(byte value)
  3. byteToHexString(byte value)
  4. byteToHexString(byte[] b)
  5. byteToHexString(byte[] b)
  6. byteToHexString(byte[] bytes, int start, int end)
  7. byteToHexString(byte[] bytes, int start, int end)
  8. byteToHexString(byte[] data)
  9. byteToHexString(final byte b)