Turns a byte array into a hex-string representation, each byte is separated by a space - Java java.lang

Java examples for java.lang:byte Array to int

Description

Turns a byte array into a hex-string representation, each byte is separated by a space

Demo Code


//package com.java2s;

public class Main {
    public static void main(String[] argv) throws Exception {
        byte[] bytes = new byte[] { 34, 35, 36, 37, 37, 37, 67, 68, 69 };
        System.out.println(bytesToHexSpaced(bytes));
    }/*  w  w  w . j  a v  a2s  .co m*/

    final protected static char[] hexArray = "0123456789ABCDEF"
            .toCharArray();

    /**
     * Turns a byte array into a hex-string representation, each byte is separated by a space
     * @param bytes
     * @return
     */
    public static String bytesToHexSpaced(byte[] bytes) {
        char[] hexChars = new char[bytes.length * 3];
        for (int j = 0; j < bytes.length; j++) {
            int v = bytes[j] & 0xFF;
            hexChars[j * 3] = hexArray[v >>> 4];
            hexChars[j * 3 + 1] = hexArray[v & 0x0F];
            hexChars[j * 3 + 2] = ' ';
        }
        return new String(hexChars);
    }
}

Related Tutorials