XDocument:您可以跳过加载
发布于 2024-10-03 09:48:22 字数 412 浏览 2 评论 0原文

    For Each file In My.Computer.FileSystem.GetFiles(inputFolder)
        doc = XDocument.Load(file)
    Next

这会因“'['是一个意外的标记。Blah,blah,blah”而崩溃,

第一行显然令人窒息,这是......

<!DOCTYPE RCWChapter PUBLIC "-//LSC//DTD RCW Chapter for Authoring//EN" [] >

第一,这是无效的XML吗?为什么它挂在“[”上?

2、我可以以某种方式加载 XML 文档,但跳过 DOCTYPE 吗?我应该将其作为流加载吗?字符串.替换它吗?

    For Each file In My.Computer.FileSystem.GetFiles(inputFolder)
        doc = XDocument.Load(file)
    Next

This crashes with a "'[' is an unexpected token. Blah,blah,blah"

It's obviously choking on the first line which is....

<!DOCTYPE RCWChapter PUBLIC "-//LSC//DTD RCW Chapter for Authoring//EN" [] >

1st, is that INVALID XML? Why is it hanging on the "[" ?

2nd, Can I somehow load the XML document, but skip the DOCTYPE? Should I load it as a stream? string.replace it?

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

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

发布评论

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

评论(1

花间憩 2024-10-10 09:48:22

试试这个:您可以通过将 XDocumentType.InternalSubset 属性设置为 null 从 DTD 中删除内部子集

XDocument document = ...;
if (document.DocumentType != null)
document.DocumentType.InternalSubset = null;

Try This : you can remove the internal subset from the DTD by setting the XDocumentType.InternalSubset property to null

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