37

我需要将 a 的内容java.nio.ByteBuffer放入java.io.OutputStream. (希望我有一个Channel,但我没有)最好的方法是什么?

我不能使用 ByteBuffer 的array()方法,因为它可以是只读缓冲区。

我也可能在使用此 ByteBuffer 和拥有一个可以直接使用的常规数组之间散布对 OutputStream 的byte[]写入OutputStream.write()

4

1 回答 1

60

查看Channels.newChannel(OutputStream)。它会给你一个给定输出流的频道。使用 WritableByteChannel 适配器,您可以提供将其写入 OutputStream 的 ByteBuffer。

public void writeBuffer(ByteBuffer buffer, OutputStream stream) {
   WritableByteChannel channel = Channels.newChannel(stream);

   channel.write(buffer);
}

这应该可以解决问题!

于 2009-02-23T22:16:25.200 回答