Android SAXParser Malformed XMl 错误

发布于 2024-10-20 17:51:30 字数 309 浏览 0 评论 0原文

我有一个使用 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 技术交流群。

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

发布评论

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

评论(1

始终不够 2024-10-27 17:51:30

该 XML 中是否有 DTD 或命名空间? Android 应用程序可能存在这些问题,因此无法解析。 (有确切的错误消息吗?)

您可以通过检查

  • 。 html#isNamespaceAware%28%29" rel="nofollow">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

There might be a difference. If there is, use SAXParserFactory#setNamespaceAware() and SAXParserFactory#setValidating() to set the same values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文