1

我有一个ByteBuffer包含 1024 字节的。

我需要在关键时刻以某个偏移量覆盖缓冲区内的短路。

我知道 ByteBuffer 类有putShort(),但这不会覆盖数据,它只是将其添加进去,这会导致缓冲区溢出。

我猜没有使用 的直接方法可以做到这一点ByteBuffer,有人可能会建议一种方法来做到这一点吗?

谢谢

感谢所有回复的人,似乎可以做到我只是使用了错误版本的 putShort()。我想这就是当你盯着同一段代码六个小时时会发生的事情。

再次感谢

4

4 回答 4

3

无法重现问题,一切正常

    ByteBuffer bb = ByteBuffer.allocate(20);
    bb.putShort(10, (short)0xffff);
    System.out.println(Arrays.toString(bb.array()));

印刷

[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0]
于 2013-02-14T16:54:39.457 回答
1

对于您的特殊情况,您可以backing array使用array()方法直接修改。

然后只需在正确的索引处插入两个字节:

if(myBuffer.hasArray()) {
    byte[] array = myBuffer.array();
    array[index] = (byte) (myShort & 0xff);
    array[index + 1] = (byte) ((myShort >> 8) & 0xff);
}
于 2013-02-14T16:53:29.017 回答
1
int p = b.position();
b.position( ZePlace );
p.putShort( ZeValue );
b.position( p );

http://docs.oracle.com/javase/7/docs/api/java/nio/Buffer.html#position%28%29

于 2013-02-14T16:54:10.090 回答
0

我认为您可以调用此版本的putShort()接受位置索引。

于 2013-02-14T16:54:39.007 回答