SAX 解析器在“&”之后没有传递象征
我的要求是从服务器端解析 xml 数据并将其显示在 Blackberry 中,我使用 SAX 解析器来执行此操作。我用一个例子来解释这个场景。
<代码><名称>ABC <公司>TCS <名称>DEF
在上面的示例中,可以读取除“E&Y”之外的所有属性。
my requirement is to parse xml data from the server side and display it in Blackberry, I am using SAX parser to perform this operation. I am using an example to explain the scenario.
<Name>ABC</Name>
<Company>TCS</Company>
<Name>DEF</Name>
<Company>E&Y</Company>
In the above example, it is possible to read all the attribute except the "E&Y".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的 xml 已损坏。检查 xml 转义。
正确的 xml 应该如下所示:
修复您的 xml,解析器就可以正常工作了。
Your xml is corrupted. Check for xml escaping.
Proper xml should look like:
Fix your xml and the parser becomes to work OK.
检查这个线程
Blackberry UTF-8 问题
一位回答说:
希望有帮助
Check this thread
Blackberry UTF-8 Problem
One ansewr says:
Hope that helps
我猜问题是编码
搜索“encoding='UTF-8' sax parser”
I guess the problem is the encoding
Search for "encoding='UTF-8' sax parser"