Android Byte Array to Hex Convert bytes2hex(byte[] bytes)

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

Description

byteshex

Declaration

public static String bytes2hex(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {

    public static String bytes2hex(byte[] bytes) {
        StringBuffer strbuf = new StringBuffer(bytes.length * 2);
        for (int i = 0; i < bytes.length; i++) {
            int bt = bytes[i] & 0xff;
            if (bt < 0x10) {
                strbuf.append("0");
            }/*from  www . j  av a 2 s  .  c  om*/
            strbuf.append(Integer.toHexString(bt));
        }
        return strbuf.toString();
    }
}

Related

  1. bytesToHex(byte[] data)
  2. convertToHex(byte[] in)
  3. convertToHex(byte[] raw)
  4. bytes2Hex(byte[] bts)
  5. bytes2HexString(byte[] bytes)
  6. bytesToHex(byte[] bytes)
  7. bytesToHex(byte[] data)
  8. bytesToHex(byte[] data)
  9. bytesToHex(byte[] data, int offset, int length)