Java Byte Array Print printByteArray(byte[] bytes)

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

Description

print Byte Array

License

Apache License

Declaration

public static String printByteArray(byte[] bytes) 

Method Source Code

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

public class Main {

    public static String printByteArray(byte[] bytes) {
        StringBuilder sb = new StringBuilder(1024);
        for (byte b : bytes) {
            sb.append(printByte(b)).append(" ");
        }//w w  w .  j  av a2  s. co  m
        return sb.toString();
    }

    public static String printByte(byte b) {
        final String BYTE_FORMAT = "%02x";
        return String.format(BYTE_FORMAT, b);
    }
}

Related

  1. printByte(byte[] bytes)
  2. printByteArray(byte b[])
  3. printByteArray(byte[] bytes)
  4. printByteArray(byte[] bytes)
  5. printByteArray(byte[] bytes)
  6. printByteArray(byte[] bytes)
  7. printByteArray(byte[] input)
  8. printByteArrayAsChars(byte[] bytes)
  9. printByteArrayToHex(byte[] byteArray, int length)