如何从 ZIP 存档中读取文件

发布于 2024-09-24 16:31:27 字数 144 浏览 5 评论 0原文

我面临一个问题,我需要将 zipentry 转换为文件。

发生的情况是我有一个充满 csv 文件的 zip 文件。我需要解压缩文件并提取 csv 文件并使用 Scanner() 读取它,该 Scanner() 仅接受文件(类型)而不是 zipentry...

I am facing a problem where i need to convery the zipentry into a file.

What happens is that I have a zip file full of csv files. I need to unzip the file and extract out the csv files and read it using a Scanner() which takes in only a file (type) and not a zipentry...

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

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

发布评论

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

评论(1

溺深海 2024-10-01 16:31:27

Scanner 类还接受 其构造函数。一旦您拥有 ZipEntry(从 ZipFile 获取它),您就可以在 myZipFile.getInputStream(zipEntry) 方法获取可传递给 ScannerInputStream

Scanner class also accepts InputStream in one of its constructors. Once you have ZipEntry (you obtain it from ZipFile), you can use it in myZipFile.getInputStream(zipEntry) method to get InputStream that you can pass to Scanner.

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