[NSXMLNode stringValue]的最大长度

时间:2009-04-23 03:42:01

标签: xml cocoa nsstring nsxml

我有一个XML文档,其中包含长度超过90,000个字符的元素 *

NSXMLNode* node = ...;
NSString* val = [node stringValue]; // this is not the full contents of the node!

第二行只给我80k左右。这显然不是我想要的,所以我很感激一些建议。 NSXMLNode坏了吗?我猜我做错了。

提前致谢!

* 我知道元素中的90k字节不是很好,这不在我手中。

1 个答案:

答案 0 :(得分:1)

[node objectValue]给你什么?