如何从InputStream创建RandomAccessFile?

发布于 2024-09-19 11:44:43 字数 472 浏览 5 评论 0原文

我知道的唯一方法是编写一个临时文件,并读取该文件以创建 RandomAccessFile ,检查它 此处

或使用使用统一 I/O 库 (http:// uio.imagero.com此处

这是最好的方法吗?或者可以使用临时文件和imageio库来实现它?

The only way I know is to write a temp file, and read this file to create RandomAccessFile ,check it here

or use Use Unified I/O library (http://uio.imagero.com) here

Would this be the best way? Or can use temp file and the imageio library to implement it?

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

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

发布评论

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

评论(1

晨曦÷微暖 2024-09-26 11:44:43

是的,对于输入流的随机访问,您必须缓冲流(至少达到请求的点)。像 Unified I/O 这样的库应该可以工作,或者您可以实现 DataInput 和 DataOutput,这将使您的类像 RandomAccessFile 一样运行,如果您有自定义缓冲需求,则文件部分除外。

Yes, for random access of an InputStream you must buffer the stream (at least up to the point requested). A library like Unified I/O should work, or you can implement DataInput and DataOutput, which will have your class operating like a RandomAccessFile except for the file part if you have custom buffering needs.

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