Android SAXParser Malformed XMl 错误
我有一个使用 SAXParser (javax.xml.parsers.SAXParserFactory) 来解析 XML 的服务器组件。我在我的 android 手机间隙应用程序中重用这个库。问题是,当我使用该库与服务器通信并解析服务器的响应时,它失败并出现 - Malformed XML - 异常。但是,如果我使用普通 Java 程序中的相同库,则解析器可以很好地处理来自服务器的响应,并且不会出现错误。 我比较了 android 和普通 javacase 中的 XML 有效负载,它们是完全相同的。我知道这是一个非常模糊和奇怪的问题,几乎没有什么可继续的,但我没有想法。任何想法或提示都会有帮助。
I have a server component which uses SAXParser (javax.xml.parsers.SAXParserFactory) to parse an XML. I am reusing this library in my phonegap app for android. The problem is that when I use the library to communicate to the server and parse the response from the server, it fails with - Malformed XML - exception. However, if I use the same library from normal Java program, the response from the server is processed fine by the parser and there is no error.
I compared the XML payloads in both android and normal javacase and they are exactly the same. I know that this is a very vague and strange question with very little to go on but I am out of ideas. Any ideas or hints would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该 XML 中是否有 DTD 或命名空间? Android 应用程序可能存在这些问题,因此无法解析。 (有确切的错误消息吗?)
您可以通过检查
isNamespaceAware()
isValidating()
可能存在差异。如果有,请使用
SAXParserFactory#setNamespaceAware()
和SAXParserFactory#setValidating()
设置相同的值。Is there a DTD or namespace in that XML? It may be possible that the android app has a problem with those and fail to parse because of that. (Is there an exact error message?)
You may check what are the differences between the parsers by checking
isNamespaceAware()
isValidating()
There might be a difference. If there is, use
SAXParserFactory#setNamespaceAware()
andSAXParserFactory#setValidating()
to set the same values.