在 Java 中将 Long 转换为字节数组并返回
通过 TCP 连接传输数据时,可能需要将 long 转换为一个字节数组。要实现此转换,您可以利用以下方法:
<code class="java">public byte[] longToBytes(long x) { ByteBuffer buffer = ByteBuffer.allocate(Long.BYTES); buffer.putLong(x); return buffer.array(); } public long bytesToLong(byte[] bytes) { ByteBuffer buffer = ByteBuffer.allocate(Long.BYTES); buffer.put(bytes); buffer.flip(); return buffer.getLong(); }</code>
为了避免过多创建 ByteBuffer,请考虑使用如下所示的类:
<code class="java">public class ByteUtils { private static ByteBuffer buffer = ByteBuffer.allocate(Long.BYTES); public static byte[] longToBytes(long x) { buffer.putLong(0, x); return buffer.array(); } public static long bytesToLong(byte[] bytes) { buffer.put(bytes, 0, bytes.length); buffer.flip(); return buffer.getLong(); } }</code>
记住,它通常是最好使用像 Guava 这样的库来完成这项任务。但是,对于本机 Java 解决方案,这些方法提供了一种可靠的方法来处理长到字节数组的转换。
以上是如何在 Java 中将 Long 转换为字节数组并返回?的详细内容。更多信息请关注PHP中文网其他相关文章!