代码记录如下:
// long 转 byte[ ]
protected static byte[] longToBytes(long x) {
ByteBuffer longBuffer = ByteBuffer.allocate(Long.BYTES);
longBuffer.putLong(0, x);
return longBuffer.array();
}
// byte[ ] 转long
protected static long bytesToLong(byte[] bytes) {
return ByteBuffer.wrap(bytes).getLong();
}