Blackberry - 以编程方式提取/打开 zip 文件
我在网上查看了不同的结果,但是有没有办法以编程方式在 BB 上提取 zip 文件?非常基本的我的应用程序将显示不同的加密文件类型,并且这些文件以 zip 文件形式提供。我的想法是让用户浏览到他们的 SDCard 上的文件,选择它,然后我从文件中以流的形式提取我需要的内容。这可能吗?
I have looked online with mixed results, but is there a way to programmatically extract a zip file on the BB? Very basic my app will display different encrypted file types, and those files are delivered in a zip file. My idea was to have the user browse to the file on their SDCard, select it, and I extract what i need as a stream from the file. is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 GZIPInputStream
例子:
Use GZIPInputStream
Example:
只有两件事:
请参阅如何从 Blackberry 应用程序中附加的 zip 文件检索数据?
PS 实际上,您可以实现自定义多条目流和解压后解析它,但如果您希望其他应用程序支持此存档格式,这似乎没有用。
Just two things:
See How to retrieve data from a attached zip file in Blackberry application?
PS Actually you can implement custom multi-entries stream and parse it after decompress, but that seems to be useless, if you want this archive format to be supported in other applications.