如何从一个 NSData 对象写入多个文件?
我正在编写一个包含应用内购买功能的 iPhone 应用程序。它下载一个 zip 文件,然后我使用 流行的 NSData 类别解压缩该文件(zlibDeflate) 将未压缩的文件输出到 NSData 对象中。该 zip 文件包含多个文件,我需要将这些文件写入 Documents 目录。如何将每个文件与这个 NSData 对象分开写入? writeToFile 只是将整个内容写入一个文件。
谢谢您,如果您需要更多信息,请告诉我。
I'm writing an iPhone app that includes in-app purchasing. It downloads a zip file, then I unzip the file using the popular NSData category (zlibDeflate) which outputs the uncompressed file into an NSData object. The zip file contains multiple files in it which I need to write to the Documents directory. How can I write each file separately from this one NSData object? writeToFile just writes the whole thing to one file.
Thank you and let me know if you need any more information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您仍未解决此问题,您可以尝试使用:
http://code.google。 com/p/ziparchive/
并阅读此处文档的注释:
http ://code.google.com/p/ziparchive/wiki/PageName
If you still haven't fixed this, you could try and use:
http://code.google.com/p/ziparchive/
and read the comments to the documentation here:
http://code.google.com/p/ziparchive/wiki/PageName