Java Byte Array to String bytes2String(byte[] bytes)

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

Description

bytes String

License

Open Source License

Declaration

public static String bytes2String(byte[] bytes) 

Method Source Code

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

public class Main {
    public static String bytes2String(byte[] bytes) {
        StringBuilder string = new StringBuilder();
        for (byte b : bytes) {
            String hexString = Integer.toHexString(0x00FF & b);
            string.append(hexString.length() == 1 ? "0" + hexString : hexString);
        }/*  w ww .j a va2  s . c om*/
        return string.toString();
    }
}

Related

  1. bytes2String(byte[] b, int start, int len)
  2. bytes2String(byte[] bs, String charset)
  3. bytes2String(byte[] buffer, int offset, int length)
  4. bytes2String(byte[] bytes)
  5. bytes2String(byte[] bytes)
  6. bytes2String(byte[] bytesArray)
  7. bytes2String(byte[] data)
  8. bytes2string(byte[] src)
  9. bytes2string(byte[] src)