我正在使用Javas UUID
并需要将UUID转换为字节数组。奇怪的是,UUID类不提供"toBytes()"
方法。
我已经发现了两种方法:
UUID.getMostSignificantBits()
and
UUID.getLeasSignificantBits()
但如何将其转换为字节数组?结果应该是带有这些两个值的byte []。我不知何故需要做Bitshifting但是,怎么做?
更新
我找到了:
ByteBuffer byteBuffer = MappedByteBuffer.allocate(2);
byteBuffer.putLong(uuid.getMostSignificantBits());
byteBuffer.putLong(uuid.getLeastSignificantBits());
这种方法是否正确?
还有其他方法(用于学习目的)吗?
非常感谢!! 延
答案 0 :(得分:15)
您可以使用ByteBuffer
byte[] bytes = new byte[16];
ByteBuffer bb = ByteBuffer.wrap(bytes);
bb.order(ByteOrder.LITTLE_ENDIAN or ByteOrder.BIG_ENDIAN);
bb.putLong(UUID.getMostSignificantBits());
bb.putLong(UUID.getLeastSignificantBits());
// to reverse
bb.flip();
UUID uuid = new UUID(bb.getLong(), bb.getLong());
答案 1 :(得分:5)
如果您更喜欢“常规”IO到NIO,则有一个选项:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
dos.write(uuid.getMostSignificantBits());
dos.write(uuid.getLeastSignificantBits());
dos.flush(); // May not be necessary
byte[] data = dos.toByteArray();
答案 2 :(得分:0)
<!-- language: lang-java -->
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
dos.writeLong(password.getMostSignificantBits());
dos.writeLong(password.getLeastSignificantBits());
dos.flush(); // May not be necessary
return baos.toByteArray();