Gwt XMLParser 无法解析错误,格式不正确
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 intoparse
and you should be good to go.