在 iphone sdk 中解压的压缩文件的最大大小?

发布于 2024-09-10 07:00:41 字数 92 浏览 2 评论 0原文

我有一个 zip 文件需要解压。该文件的大小为 70 MB。但是当我解压缩文件时应用程序崩溃了。它对于 40 MB 文件运行良好。 我可以做什么来解压 70 MB 文件?

I have one zip file that i want unzip .the size of this file is 70 MB. but application is crash when i unzip file. its run fine for 40 MB file.
what i can do to unzip 70 MB file ?

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

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

发布评论

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

评论(1

素手挽清风 2024-09-17 07:00:41

应用程序是否由于内存不足而崩溃,或者您是否在主线程上解压缩文件 - 较大的 zip 文件需要更长的时间,从而阻塞您的应用程序太长时间?如果您的应用程序在 5 秒内没有响应,操作系统将终止您的应用程序。

大多数解压缩库都会以小部分缓冲 zip 输出并多次写入磁盘,因此不应占用太多 RAM。

如果您还没有这样做,我将在辅助线程上执行解压缩,看看这是否有帮助。

Is the application crashing due to running out of memory, or are you unzipping the file on your main thread - with the larger zip file taking longer, thus blocking your app for too long? The OS will terminate your app if it doesn't respond within 5 seconds.

Most unzip libraries will buffer the zip output in small sections and write to disk many times, so shouldn't take up too much in way of RAM.

If you haven't done so already, I would perform the unzipping on a secondary thread and see if that helps at all.

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