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

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

Description

bytes To String

License

Open Source License

Declaration

public static String bytesToString(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {
    public static String bytesToString(byte[] bytes) {
        StringBuffer sBuffer = new StringBuffer();
        for (int i = 0; i < bytes.length; i++) {
            sBuffer.append(byteToString(bytes[i]));
            if (i != bytes.length - 1)
                sBuffer.append("-");
        }/*from  w w w.  j  ava 2 s  . com*/
        return sBuffer.toString();
    }

    public static String byteToString(byte b) {
        String result = String.valueOf(Integer.toHexString(b & 0xFF));
        if (result.length() == 1)
            result = "0" + result;
        return result.toUpperCase();
    }
}

Related

  1. bytesToString(byte[] bytes)
  2. bytesToString(byte[] bytes)
  3. bytesToString(byte[] bytes)
  4. bytesToString(byte[] bytes)
  5. bytesToString(byte[] bytes)
  6. bytesToString(byte[] bytes)
  7. bytesToString(byte[] bytes, int offs, int len)
  8. bytesToString(byte[] bytes, int startIndex)
  9. bytesToString(byte[] bytes, String encoding)