ImageIO.write 是否被缓冲?

发布于 2024-09-08 19:46:58 字数 263 浏览 9 评论 0 原文

我应该写

BufferedOutputStream os = new BufferedOutputStream(new FileOutputStream(file));
ImageIO.write(im, "JPEG", os);

ImageIO.write(im, "JPEG", file);

不是默认情况下是否缓冲 ImageIO 文件操作?

谢谢!

Should I write

BufferedOutputStream os = new BufferedOutputStream(new FileOutputStream(file));
ImageIO.write(im, "JPEG", os);

instead of

ImageIO.write(im, "JPEG", file);

I.e. are ImageIO file operations buffered by default or not?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仅此而已 2024-09-15 19:46:58

如果您传入 File,底层实现将直接写入 RandomAccessFile(在 "rw" 模式下创建),因此没有缓冲。具体来说,FileImageOutputStream 将用作ImageOutputStream

If you pass in a File, the underlying implementation will write directly to a RandomAccessFile (created in "rw" mode), so no buffering. Specifically, a FileImageOutputStream will be used as the ImageOutputStream.

作死小能手 2024-09-15 19:46:58

我相信这取决于 IIORegistry 的具体实现,我认为它与系统相关。

我希望它能被缓冲,但我想你可以选择第一个选项来完全确定。

I believe it depends on the specific implementation of the IIORegistry which I suppose is system dependent.

I would expect it to be buffered, but I suppose you could go with the first option to be completely sure.

故人的歌 2024-09-15 19:46:58

您将需要使用 BufferedOutputStream (如问题中提到的例 1)。

默认情况下,ImageIo.write 不被缓冲。这取决于您在参数中传递给它的内容。如果传递 File 对象,则不会缓冲写入。

You will need to use BufferedOutputStream (As in ex. 1 mentioned in question).

ImageIo.write is not buffered by default. It depends upon what you pass to it in arguments. In case of File object being passed it won't be buffered write.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文