Here you can find the source of bytesToHexSpaced(byte[] bytes)
Parameter | Description |
---|---|
bytes | a parameter |
public static String bytesToHexSpaced(byte[] bytes)
//package com.java2s; //License from project: Open Source License public class Main { final protected static char[] hexArray = "0123456789ABCDEF".toCharArray(); /**//from ww w. j a va 2 s. c o m * 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); } }