我需要创建一个字节数组,使前八个字节应该是当前时间戳,剩下的字节应该是原样。然后从同一个字节数组中我想要提取我放在首位的时间戳。
public static void main(String[] args) {
long ts = System.currentTimeMillis();
byte[] payload = newPayload(ts);
long timestamp = bytesToLong(payload);
System.out.println(timestamp);
}
private static byte[] newPayload(long time) {
ByteBuffer buffer = ByteBuffer.allocate(Long.SIZE / Byte.SIZE);
byte[] payload = new byte[300];
Arrays.fill(payload, (byte) 1);
buffer.putLong(time);
byte[] timeBytes = buffer.array();
System.arraycopy(timeBytes, 0, payload, 0, timeBytes.length);
return payload;
}
public static long bytesToLong(byte[] bytes) {
byte[] newBytes = Arrays.copyOfRange(bytes, 0, (Long.SIZE / Byte.SIZE - 1));
ByteBuffer buffer = ByteBuffer.allocate(Long.SIZE / Byte.SIZE);
buffer.put(newBytes);
buffer.flip();// need flip
return buffer.getLong();
}
上面的代码给了我例外,我不确定是什么问题?
Exception in thread "main" java.nio.BufferUnderflowException
at java.nio.Buffer.nextGetIndex(Buffer.java:498)
at java.nio.HeapByteBuffer.getLong(HeapByteBuffer.java:406)
答案 0 :(得分:2)
来自Arrays.copyOfRange
的文档:
to - 要复制的范围的最终索引,不包括。 (该索引可能位于数组之外。)
这意味着,您没有将足够的字节放入缓冲区。 所以正确的方法是:
byte[] newBytes = Arrays.copyOfRange(bytes, 0, Long.SIZE / Byte.SIZE);