public static BigInteger bigInteger(UUID uuid) {
ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
return new BigInteger(bb.array());
}
public static UUID uuid(BigInteger value) {
byte[] bytes = value.toByteArray();
ByteBuffer byteBuffer = ByteBuffer.wrap(bytes);
Long high = byteBuffer.getLong();
Long low = byteBuffer.getLong();
return new UUID(high, low);
}为什么下面的测试在java.nio.BufferUnderflowException中失败
@Test
public void testUuidBigInteger_underflow() {
UUID uuidValue = UUID.fromString("ffe11491-04ab-4602-bd85-08716fb4d384");
BigInteger bigIntegerValue = bigInteger(uuidValue);
UUID uuidValue2 = uuid(bigIntegerValue);
assertEquals(uuidValue, uuidValue2);
}发布于 2018-11-18 20:46:49
在从ByteBuffer写入和读取之间,需要调用.flip()方法--将缓冲区的限制设置为当前位置,位置设置为0,即如下所示:
public static BigInteger bigInteger(UUID uuid) {
ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
bb.flip();
return new BigInteger(bb.array());
}https://stackoverflow.com/questions/48935537
复制相似问题