谢谢你们,但我自己刚找到的。 我写了一封信 Long 变成一个 ByteBuffer 没有使用 flip() 之后。
public static ByteBuffer toBB(Long x) {
ByteBuffer bb = ByteBuffer.allocate(Long.BYTES);
if (x == null) {
return null;
}
bb.putLong(x);
bb.flip(); //Added this line here and it works
return bb;
}
1条答案
按热度按时间sirbozc51#
谢谢你们,但我自己刚找到的。
我写了一封信
Long
变成一个ByteBuffer
没有使用flip()
之后。