Java Formatter Usage byteToHex(final byte[] bytes)

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

Description

byte To Hex

License

Apache License

Declaration

public static String byteToHex(final byte[] bytes) 

Method Source Code

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

import java.util.Formatter;

public class Main {

    public static String byteToHex(final byte[] bytes) {
        Formatter formatter = new Formatter();
        for (byte b : bytes) {
            formatter.format("%02x", b);
        }//from  w ww.j a v  a  2  s.  c  om
        String result = formatter.toString();
        formatter.close();
        return result;
    }
}

Related

  1. byteArray2HexString(byte[] buf)
  2. byteArrayToHex(final byte[] hash)
  3. byteArrayToHexString(byte[] bytes)
  4. byteArrayToHexString(byte[] bytes, int pos, int len)
  5. bytesToHexString(byte[] bytes)
  6. byteToHexWithPrefix(final byte[] data)
  7. chatting(String fmt, Object... args)
  8. convertRGBDecToHex(String decimal)
  9. convertTimeToString(double d, String timeFormat)