4

我已经实现了保存applicationWillTerminate和加载applicationWillFinishLoading。有一个完整的对象树,都实现了NSCoding协议,我检查了我输入的类型。

其中一个类还存储NSMutableDataNSKeyedArchive,我怀疑这可能会偶尔破坏取消归档。奇怪的是,有时它有效,有时则无效。我怀疑其中的某些内容NSMutableData会破坏存档。

我在所有对象上使用 encodeObject,除了 bools 和 int 我使用正确的相应方法(encodeBool:forKey:encodeInt:forKey:

更清楚地说:代码确实有效,有时它能够重建一个相当完整的对象图,但并非总是如此。

我得到的错误信息是:

initForReadingWithData incomprehensible archive 0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30

补充:失败的代码,它是NSMutableData10+ MB

- (void)encodeWithCoder:(NSCoder*)encoder {
[encoder encodeObject:self.encodedMessage forKey:@"EncodedMessage"]; //NSData
[encoder encodeObject:self.data forKey:@"Data"]; //NSMutableData (10+MB)
[encoder encodeObject:self.header forKey:@"Header"]; //NSString
[encoder encodeObject:self.fileName forKey:@"FileName"]; //NSString
[encoder encodeInt:self.dataStartIndex forKey:@"DataStartIndex"]; //int
[encoder encodeInt:self.dataEndIndex forKey:@"DataEndIndex"]; //int
}

- (id)initWithCoder:(NSCoder*)decoder {
    if (self = [super init]) {
        self.encodedMessage = [decoder decodeObjectForKey:@"EncodedMessage"]; //NSData
        self.data = [decoder decodeObjectForKey:@"Data"]; //NSMutableData
        self.header = [decoder decodeObjectForKey:@"Header"]; //NSString
        self.fileName = [decoder decodeObjectForKey:@"FileName"]; //NSString
        self.dataStartIndex = [decoder decodeIntForKey:@"DataStartIndex"]; //int
        self.dataEndIndex = [decoder decodeIntForKey:@"DataEndIndex"]; //int
    }

    return self;
}

当我删除 self.data 编码和解码时,它似乎总是有效。它也因较小的 self.data 而失败。似乎不是大小而是内容问题?

当我将 nsmutabledata 写入文件时尝试打开文件,正确的列表编辑器显示错误:

"Conversion of string failed. The string is empty."

plutil 也给出了这个错误:

"$ plutil -lint nzbvortex.state nzbvortex.state: Conversion of string failed. The string is empty."
4

3 回答 3

4

FWIW我也遇到了这个问题,这就是我发现的。

报告的字节 0x62、0x70、0x6c 等是二进制属性列表开头的魔术字符串“bplist”的一部分,NSKeyedArchiver 默认使用该列表。

二进制属性列表将元数据存储在尾部(即数据末尾)中。因此,如果它被截断,整个 plist 将变得不可读。

如果你想检查这是否发生在你身上,你可以使用来自 Cocotron ( http://code.google.com/p/cocotron/source/browse/Foundation/NSPropertyList/ ) 的 NSPropertyListReader_binary1 来查看文件格式是如何工作的.

希望这对某人有帮助!

于 2013-04-10T14:19:09.627 回答
2

似乎通过 NSMutableArray 存储超过 230000 个字节将导致 NSKeyedArchiver 创建损坏的 plist 文件。

220000 个作品,250000 个没有。是否搜索了允许的确切金额。

于 2010-01-08T21:24:31.223 回答
0

对于 bool 和 int,有两种方法:encodeBool:forKey:encodeInt:forKey:(取自NSKeyedArchiver 参考)。

对于 NSMutableData,您应该encodeObjectForKey:使用decodeObjectForKey:.

您可以参考这个有用的指南了解更多案例。

于 2010-01-08T10:10:15.443 回答