我正在使用以下方式InputStream
写入File
:
private void writeToFile(InputStream stream) throws IOException {
String filePath = "C:\\Test.jpg";
FileChannel outChannel = new FileOutputStream(filePath).getChannel();
ReadableByteChannel inChannel = Channels.newChannel(stream);
ByteBuffer buffer = ByteBuffer.allocate(1024);
while(true) {
if(inChannel.read(buffer) == -1) {
break;
}
buffer.flip();
outChannel.write(buffer);
buffer.clear();
}
inChannel.close();
outChannel.close();
}
我想知道这是否是使用 NIO 的正确方法。我读过一个方法FileChannel.transferFrom
,它需要三个参数:
- ReadableByteChannel src
- 多头头寸
- 长数
在我的情况下,我只有src
,我没有position
and count
,有什么办法可以使用这种方法来创建文件?
同样对于 Image 是否有更好的方法来仅从InputStream
NIO 创建图像?
任何信息都会对我非常有用。这里有类似的问题,在 SO 中,但我找不到适合我的情况的任何特定解决方案。