gpt4 book ai didi

iphone - 控制台输出指出位长度溢出

转载 作者:行者123 更新时间:2023-12-03 18:47:29 24 4
gpt4 key购买 nike

当我运行我的应用程序时,我将以下输出发送到控制台:

位长度溢出代码 11 位 7->5代码 16 位 4->5

位长度溢出代码 4 位 6->7

位长度溢出代码 3 位 6->7代码 0 位 6->7

位长度溢出代码 16 位 4->5

位长度溢出代码 4 位 6->7代码 5 位 6->5代码 16 位 4->5

位长度溢出代码 16 位 4->5

位长度溢出代码 0 位 6->7

位长度溢出代码 11 位 6->7

该应用程序压缩了 3 个文件并将其保存到其文档文件夹中,除了此输出之外,一切似乎都正常......

更新:

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 

@try {
NSString *docsPath =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *filePath = [docsPath stringByAppendingPathComponent:@"ZipTest.zip"];
ZipFile *zipFile = [[ZipFile alloc] initWithFileName:filePath mode:ZipFileModeCreate];
ZipWriteStream *stream;

if (self.textSwitch.on) {
stream = [zipFile writeFileInZipWithName:@"text.txt" compressionLevel:ZipCompressionLevelBest];
}
[zipFile close];
[zipFile release];
}
@catch (ZipException *ze) {}
@catch (id e) {}

[pool drain];

这是什么意思?

谢谢

最佳答案

根据这个Mozilla bug这些是由在 Debug模式下构建 ZLIB 引起的,并且是无害的。您可以考虑始终构建 ZLIB 的发行版本。

关于iphone - 控制台输出指出位长度溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6219072/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com