我得到一个DataBuffer作为输入参数,它是ByteBuffer的包装。现在,我想记录缓冲区的全部内容。此外,我必须将该缓冲区传递给外部库。

因此,由于我不能两次读取ByteBuffer,因此要么必须重置缓冲区,要么从String重新创建它。

问题:应该采用以下哪种方法(或者还有更好的方法)?

//Input:
DataBuffer dataBuffer;

//common logging:
ByteBuffer bb = dataBuffer.asByteBuffer();
String bufferContent = StandardCharsets.UTF_8.decode(bb).toString();
LOGGER.info(bufferContent);

//then either reset the buffer:
bb.rewind();
externalService.call(dataBuffer);

//or convert the string content back to buffer:
externalService.call(new DefaultDataBufferFactory().wrap(bufferContent.getBytes()));

最佳答案

Duplicate用于保留原稿位置,限制和标记值的缓冲区。

String bufferContent = StandardCharsets.UTF_8.decode(bb.duplicate()).toString();

09-16 03:22