Java Utililty Methods Unsigned Byte Create

List of utility methods to do Unsigned Byte Create

Description

The list of methods to do Unsigned Byte Create are organized into topic(s).

Method

byte[]toUnsignedBytes(long convert)
to Unsigned Bytes
byte[] bytes = new byte[4];
for (int i = 0; i < bytes.length; i++) {
    bytes[i] = (byte) (convert >> i * 8);
return bytes;