将字节从通道复制到路径的方法,反之亦然?

时间:2014-12-02 02:36:15

标签: java nio

我发现有两种方法可以在PathInput/OutputStream之间复制字节

Files#copy(InputStream in, Path target, CopyOption... options)
Files#copy(Path source, OutputStream out)

是否有使用Readable/WritableByteChannel的方法?

说,

copy(ReadableByteChannel in, Path target, CopyOption... options)
copy(Path source, WritableByteChannel out)

我已经知道有一些方便的方法可以改变Streams和Channels。

Channels#newChannel(InputStream)
Channels#newChannel(OutputStream)

感谢。

0 个答案:

没有答案