如何从 ZIP 存档中读取文件
我面临一个问题,我需要将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Scanner
类还接受 其构造函数。一旦您拥有ZipEntry
(从ZipFile
获取它),您就可以在myZipFile.getInputStream(zipEntry)
方法获取可传递给Scanner
的InputStream
。Scanner
class also acceptsInputStream
in one of its constructors. Once you haveZipEntry
(you obtain it fromZipFile
), you can use it inmyZipFile.getInputStream(zipEntry)
method to getInputStream
that you can pass toScanner
.