如何将两个long转换为字节数组=如何将UUID转换为字节数组?
我正在使用 Javas UUID
并且需要将 UUID 转换为字节数组。奇怪的是,UUID 类没有提供“toBytes()”方法。
我已经发现了这两种方法:
UUID.getMostSignificantBits()
and
UUID.getLeasSignificantBits()
但是如何将其放入字节数组中?结果应该是一个包含这两个值的 byte[] 。我不知何故需要进行位移,但是怎么做呢?
更新:
我发现:
ByteBuffer byteBuffer = MappedByteBuffer.allocate(2);
byteBuffer.putLong(uuid.getMostSignificantBits());
byteBuffer.putLong(uuid.getLeastSignificantBits());
这种方法正确吗?
还有其他方法吗(用于学习目的)?
非常感谢!! 延斯
I am using Javas UUID
and need to convert a UUID to a byte Array. Strangely the UUID Class does not provide a "toBytes()"
method.
I already found out about the two methods:
UUID.getMostSignificantBits()
and
UUID.getLeasSignificantBits()
But how to get this into a byte array? the result should be a byte[] with those tow values. I somehow need to do Bitshifting but, how?
update:
I found:
ByteBuffer byteBuffer = MappedByteBuffer.allocate(2);
byteBuffer.putLong(uuid.getMostSignificantBits());
byteBuffer.putLong(uuid.getLeastSignificantBits());
Is this approach corret?
Are there any other methods (for learning purposes)?
Thanks very much!!
Jens
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用字节缓冲区
You can use ByteBuffer
如果您更喜欢“常规”IO 而不是 NIO,则有一种选择:
One option if you prefer "regular" IO to NIO:
对于任何尝试在 Java 1.7 中使用此功能的人,我发现以下内容是必要的:
For anyone trying to use this in Java 1.7, I found the following to be necessary: