检查 XML DOM XMLDOC 时出错
如何在 XMLDocuments 中加载 XML 之前或之后检查 XML 是否有错误? 我想捕获该错误,以便它不会继续。不要使用“尝试除外” 常见错误是“剪切、损坏、无效符号等”。有什么想法吗?
how to check if the XML has error before or after loading it in the XMLDocuments?
i would like to trap that error so that it will not proceed. not to use "Try Except"
common error are "cut, currupted, invalid symbols etc". any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 XML DOM 验证器,也可以使用函数。或者,我找到了 Microsoft 提供的一个非常易于遵循的分步教程:http: //support.microsoft.com/kb/307379。它告诉您如何在 Visual Studio 中验证 XML 文档,并且我能够针对 RRUZs 链接上的示例代码运行它。
You can use an XML DOM validator, or you can use the functions. Alternatively, I found a very easy-to-follow, step-by-step tutorial, provided by Microsoft: http://support.microsoft.com/kb/307379. It tells you how to validate your XML documents in visual studio, and I was able to run it against the example code at RRUZs' link.