Java XML Hex byteArrayToHexString(byte[] bytes)

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

Description

Convert a byte array into a hex string.

License

Open Source License

Parameter

Parameter Description
bytes byte array to convert

Return

the hex string

Declaration

public static String byteArrayToHexString(byte[] bytes) 

Method Source Code

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

import javax.xml.bind.DatatypeConverter;

public class Main {
    /**//from  w  w w  .jav  a 2s  .c  o  m
     * Convert a byte array into a hex string.
     * @param bytes byte array to convert
     * @return the hex string
     */
    public static String byteArrayToHexString(byte[] bytes) {
        return DatatypeConverter.printHexBinary(bytes);
    }
}

Related

  1. byteArrayToHex(final byte[] arr)
  2. bytesToHex(byte[] b)
  3. bytesToHex(byte[] bytes)
  4. bytesToHex(final byte[] bytes)
  5. bytesToHexStr(byte[] array)