iPhone 应用程序的 GDataXMLParser 问题

发布于 2024-10-27 19:03:36 字数 519 浏览 3 评论 0原文

我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江城子 2024-11-03 19:03:36
  1. 尝试按照此处所述对文件进行编码,
  2. 有一个很好的教程如何读取和写入 XML 文档GDataXML
  1. Try encoding the file as described here
  2. There is a nice tutorial for How To Read and Write XML Documents with GDataXML
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文