Android XML 富文本处理
我使用此处列出的教程来解析我的 XML:
http://android-er.blogspot.com/2010/05/simple-rss-reader-iii-show-details-once.html
我的问题当我尝试读取 XML 描述标签时,我得到的只是:
The "<"符号是描述应该去的地方。这是我正在阅读的提要:http://www.calvaryccm.com/rss/devos。 ashx
请帮助我解决将真实文本放入描述中的问题。谢谢你!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我刚刚使用从上面列出的网站下载的代码在 eclipse 中创建了一个 android 项目。我只对原始来源做了一处修改。我将 AndroidRssReader.java 中的第 33 行更改为:
提要加载并解析良好。
解析错误是您对原始源进行更改的结果。
I just created an android project in eclipse using the code I downloaded from the site you listed above. I only made one modification to the original sources. I changed line 33 in AndroidRssReader.java to read:
The feed loads and parses fine.
The parsing error is the result of changes you made to the original sources.
如果数据是 html 编码的,则可以使用以下方法之一 - 或者如果数据未编码,则可以将内容包围在 CDATA 标记中。
或者
If the data is html encoded, you can use one of the following methods -- or if it is unencoded, you can surround the content in CDATA tags.
or
我发现我需要将 RSS 标签包装在 CDATA 标签中,如下所示:
为 .NET Web 服务写入输入
I found out that I need to wrap my RSS tags in CDATA Tags as shown here:
Writing input for .NET web services