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

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

Description

Convert byte array to hex string.

License

Open Source License

Parameter

Parameter Description
bytes a parameter

Declaration

public static String bytes2HexString(byte[] bytes) 

Method Source Code

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

public class Main {

    public static String bytes2HexString(byte[] bytes) {
        StringBuffer sb = new StringBuffer(bytes.length);
        String sTemp;//w ww .  ja v a  2s  . c  o  m
        for (int i = 0; i < bytes.length; i++) {
            sTemp = Integer.toHexString(0xFF & bytes[i]);
            if (sTemp.length() < 2) {
                sb.append(0);
            }
            sb.append(sTemp.toUpperCase());
        }
        return sb.toString();
    }
}

Related

  1. bytes2HexString(byte[] b)
  2. bytes2HexString(byte[] b)
  3. bytes2HexString(byte[] bytes)
  4. bytes2HexString(byte[] bytes)
  5. bytes2HexString(byte[] bytes)
  6. bytes2HexString(byte[] src)
  7. bytes2HexStringWithSeparator(String separator, byte... bytes)
  8. bytesToHex(byte bytes[], int offset, int length, boolean wrap)
  9. bytesToHex(byte in[])