iPhone 应用程序的 GDataXMLParser 问题
我从 CMS 向我的 iPad 应用程序接收 xml 格式的数据。我的 CMS 中的数据有段落。 para 中断在我收到的 XML 数据中表示为
现在,当我尝试构建 GDataXMLDocument 时,
xmlDocument = [[GDataXMLDocument alloc]initWithData:webData options:0 error:&error];
它会抛出一个错误:
实体:第 2 行:解析器错误:实体 “nbsp”未定义
我尝试替换 nbsp; webData NSString 对象中带有空格或 \n 字符。但每当我尝试使用上面的代码构建 xmlDocument 时,它仍然会抛出上述相同的错误。
关于如何解决这个问题有什么想法吗?我的内容中需要有段落,但如果存在段落,则不会构建 GDataXMLDocument。我该怎么办?
Im receiving an xml format data from a CMS to my iPad app. The data in my CMS has paragraphs. The para break is represented in the XML data i receive as <p> </p>
Now when i try to build a GDataXMLDocument by
xmlDocument = [[GDataXMLDocument alloc]initWithData:webData options:0 error:&error];
it throws an error saying:
Entity: line 2: parser error : Entity
'nbsp' not defined
I tried replacing the nbsp; with a space or \n character in the webData NSString object. But still whenever i try to build the xmlDocument using the above code it throws the same aforementioned error.
Any ideas on how to resolve this? I need to have paras in my content but the GDataXMLDocument isnt getting built if there are paras present. What do i do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)