我发现有两种方法可以在Path
和Input/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)
感谢。