2

我正在byte[16]从 JDBCResultSet中读取一个 16 字节数组 ( ) rs.getBytes("id"),现在我需要将它转换为两个 long 值。我怎样才能做到这一点?

这是我尝试过的代码,但我可能没有ByteBuffer正确使用。

byte[] bytes = rs.getBytes("id");
System.out.println("bytes: "+bytes.length); // prints "bytes: 16"

ByteBuffer buffer = ByteBuffer.allocate(16);
buffer = buffer.put(bytes);

// throws an java.nio.BufferUnderflowException
long leastSignificant = buffer.getLong();
long mostSignificant = buffer.getLong();

我使用以下方法将字节数组存储到数据库中:

byte[] bytes = ByteBuffer.allocate(16)
    .putLong(leastSignificant)
    .putLong(mostSignificant).array();
4

4 回答 4

4

你可以做

ByteBuffer buffer = ByteBuffer.wrap(bytes);
long leastSignificant = buffer.getLong(); 
long mostSignificant = buffer.getLong(); 
于 2011-01-22T12:11:45.547 回答
2

在将字节插入其中后,您必须ByteBuffer使用该方法重置(从而允许 getLong() 调用从开始读取 - 偏移量 0):flip()

buffer.put(bytes);     // Note: no reassignment either

buffer.flip();

long leastSignificant = buffer.getLong();
long mostSignificant = buffer.getLong();
于 2011-01-22T00:27:03.573 回答
1

尝试这个:

LongBuffer buf = ByteBuffer.wrap(bytes).asLongBuffer();
long l1 = buf.get();
long l2 = buf.get();
于 2012-10-25T12:25:01.313 回答
1
long getLong(byte[] b, int off) {
    return ((b[off + 7] & 0xFFL) << 0) +
           ((b[off + 6] & 0xFFL) << 8) +
           ((b[off + 5] & 0xFFL) << 16) +
           ((b[off + 4] & 0xFFL) << 24) +
           ((b[off + 3] & 0xFFL) << 32) +
           ((b[off + 2] & 0xFFL) << 40) +
           ((b[off + 1] & 0xFFL) << 48) +
           (((long) b[off + 0]) << 56);
}

long leastSignificant = getLong(bytes, 0);
long mostSignificant = getLong(bytes, 8);
于 2011-01-22T00:30:09.420 回答