Java Byte Array to String bytes2string(byte[] src)

Here you can find the source of bytes2string(byte[] src)

Description

bytesstring

License

Apache License

Declaration

public static String bytes2string(byte[] src) 

Method Source Code

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

public class Main {
    final static char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray();

    public static String bytes2string(byte[] src) {
        char[] hexChars = new char[src.length * 2];
        for (int j = 0; j < src.length; j++) {
            int v = src[j] & 0xFF;
            hexChars[j * 2] = HEX_ARRAY[v >>> 4];
            hexChars[j * 2 + 1] = HEX_ARRAY[v & 0x0F];
        }//  w  ww .  ja va 2s. c om
        return new String(hexChars);
    }
}

Related

  1. bytes2String(byte[] bytes)
  2. bytes2String(byte[] bytes)
  3. bytes2String(byte[] bytesArray)
  4. bytes2String(byte[] data)
  5. bytes2string(byte[] src)
  6. bytesToStr(byte[] bytes)
  7. bytesToStr(byte[] input)
  8. bytesToStrHex(byte[] bytes)
  9. bytesToString(byte... bytes)