将存档内容作为 VFS 处理?

发布于 10-14 07:18 字数 251 浏览 4 评论 0原文

我正在实现类似文件浏览器的东西。现在我正在尝试虚拟地识别存档内的文件 - 用户可以浏览这些文件并返回到文件系统中的其他文件 - 。那么,当我认为我做了以下事情时,最佳实践是什么:

 public class VFile extends java.io.File{
     File archiveParent;
     ....
  }

是否有更好的东西或任何库可以以更简单的方式解决这个问题?

谢谢

I'm implementing someting like a file browser.Now I'm trying to recognize files inside archive virtually -the user could browse these files and return to other files in the filesystem-. So what is the best practice for this as I thought I do the following:

 public class VFile extends java.io.File{
     File archiveParent;
     ....
  }

Is there something better or any Library that could solve this in an easier way?

Thanks

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

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

发布评论

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

评论(1

吹泡泡o2024-10-21 07:18:59

Apache Commons VFS,它也是 支持“挂载”存档文件(zip、jar、tar、gzip、bzip2)。

There is Apache Commons VFS, which also supports "mounting" archive files (zip, jar, tar, gzip, bzip2).

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