Files
sweetgum-server/src/main/java/tools/LongTool.java
2021-09-09 23:28:07 +02:00

36 lines
849 B
Java

package tools;
/**
* @author Shavit
*/
public class LongTool {
// Converts 8 bytes to a long.
public static long BytesToLong(byte[] aToConvert) {
if (aToConvert.length != Long.BYTES) {
throw new IllegalArgumentException(String.format("Size of input should be %d", (Long.SIZE / 8)));
}
long nResult = 0;
for (int i = 0; i < Long.BYTES; i++) {
nResult <<= Byte.SIZE;
nResult |= (aToConvert[i] & 0xFF);
}
return nResult;
}
// Converts a long to 8 bytes.
public static byte[] LongToBytes(long nToConvert) {
byte[] aBytes = new byte[Long.BYTES];
for (int i = aBytes.length - 1; i >= 0; i--) {
aBytes[i] = (byte) (nToConvert & 0xFF);
nToConvert >>= Byte.SIZE;
}
return aBytes;
}
}