Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Qt 4 构建 Symbian 应用程序。
该应用程序使用Quazip库来解压缩文件。如果文件大小低于 13mb,则效果很好。
但如果文件大小大于 13mb。它无法解压缩。
QuaZip Library 和 Symbian Qt 4中是否存在内存问题或文件大小限制?
谢谢。
QuaZIP 使用 QIODevice API 访问 ZIP 存档中的文件。
根据您的实现选择,即您使用的具体 QIODevice 子类(QTextStream、QDataStream、QTcpSocket ...)所需的内存,您可能会在内存大小成为问题的环境中耗尽内存。