Java Formatter Usage byteArrayToHexString(byte[] bytes)

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

Description

byte Array To Hex String

License

Apache License

Declaration

public static String byteArrayToHexString(byte[] bytes) 

Method Source Code

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

import java.util.Formatter;

public class Main {

    public static String byteArrayToHexString(byte[] bytes) {
        @SuppressWarnings("resource")
        Formatter fmt = new Formatter(new StringBuilder(bytes.length * 2));
        for (byte b : bytes) {
            fmt.format("%02x", b);
        }//w w  w.  j a v  a 2  s  .  c o m
        return fmt.toString();
    }
}

Related

  1. byte2Mac(final byte[] m)
  2. byteArray2Hex(byte[] hash)
  3. byteArray2Hex(final byte[] hash)
  4. byteArray2HexString(byte[] buf)
  5. byteArrayToHex(final byte[] hash)
  6. byteArrayToHexString(byte[] bytes, int pos, int len)
  7. bytesToHexString(byte[] bytes)
  8. byteToHex(final byte[] bytes)
  9. byteToHexWithPrefix(final byte[] data)