Gwt XMLParser 无法解析错误,格式不正确

发布于 2024-12-06 01:18:45 字数 550 浏览 1 评论 0原文

我正在使用 GWT 并想要解析 xml 文件,但我收到此“无法解析错误:格式不正确”。

我正在按照以下步骤进行操作: http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsXML.html

我使用相同的 xml 电子邮件消息,并已保存到本地目录 (c:/email_message.xml),因此其格式良好,并且它给我的消息是不正确。

这是我到目前为止得到的:

try
{
String xmlString = "c://email_message.xml";
Document xmlDoc = XMLParser.parse(xmlString);
}
catch (DOMException e)
{
Window.alert(e.getCause());
}

提前致谢。帮助。

I am using GWT and want to parse an xml file, but I get this 'Failed to parse error: not well formed'.

I am following the exact steps from:
http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsXML.html

I am using the same xml email message and has been saved to a local directory (c:/email_message.xml), so its well formed, and the message its giving me is incorrect.

Here is what I got so far:

try
{
String xmlString = "c://email_message.xml";
Document xmlDoc = XMLParser.parse(xmlString);
}
catch (DOMException e)
{
Window.alert(e.getCause());
}

Thanks in advance. Help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

左秋 2024-12-13 01:18:45

XMLParser.parse 期望 xml 作为字符串,而不是 xml 的文件路径。将文件加载到字符串中,然后将其传递到解析器中,您应该可以开始了。

XMLParser.parse expects the xml as a string, not the file path to the xml. Load the file into a string and then pass that into parse and you should be good to go.

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