com.jukusoft.vertx.serializer.utils.ByteUtils Maven / Gradle / Ivy
package com.jukusoft.vertx.serializer.utils;
public class ByteUtils {
private static final char[] hexArray = "0123456789ABCDEF".toCharArray();
protected ByteUtils () {
//
}
public static int twoBytesToInt (byte type, byte extendedType) {
return ((type & 0xff) << 8) | (extendedType & 0xff);
}
/**
* converts byte array to hex string
*
* @param bytes array of bytes to convert
*
* @see Stackoverflow
*
* @return hex string
*/
public static String bytesToHex (byte[] bytes) {
char[] hexChars = new char[bytes.length * 2];
for ( int j = 0; j < bytes.length; j++ ) {
int v = bytes[j] & 0xFF;
hexChars[j * 2] = hexArray[v >>> 4];
hexChars[j * 2 + 1] = hexArray[v & 0x0F];
}
return new String(hexChars);
}
public static String byteToHex (byte type) {
byte[] bytes = new byte[] { type };
return bytesToHex(bytes);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy