XmlTextReader 和嵌入式资源 DTD
我正在尝试创建一个没有依赖项的 EXE(保留 .NET Framework :-)。该程序涉及解析一堆共享相同 DTD 的 XML 文档(使用 XmlTextReader)。 DTD 在文档中仅通过其名称来引用,因此到目前为止,我将其称为“如果较新则复制”,因此它与 EXE 本身位于同一文件夹中。
现在我想将此 DTD 作为嵌入式资源嵌入到我的项目中。我假设我需要一个自定义的 XmlResolver 来让我的 XmlTextReader 满意,但我不确定它是什么样的。秘诀是什么?
I'm trying to create a single EXE with no dependencies (spare the .NET Framework :-). The program involves parsing a bunch of XML docs (using XmlTextReader) that share the same DTD. The DTD is referred to by its name alone in the doc, so till now I've had it as "Copy if Newer" so it's in the same folder as the EXE itself.
Now I'd like to embed this DTD as an embedded resource in my project. I assume I'll need a custom XmlResolver to make my XmlTextReader happy, but I wasn't sure what that looked like. What's the secret sauce?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么秘诀。只需 Google 搜索“XmlResolver”,您就会找到“系统.Xml.XmlResolver 类”文章。在底部,您将找到“自定义 XmlUrlResolver 类”。
使用自定义解析器的实例作为在 XmlReader.Create 调用中使用的 XmlReaderSettings 实例的 XmlResolver 属性。
There is no secret sauce. Just Google for "XmlResolver", and you'll find the "System.Xml.XmlResolver class" article. At the bottom, you'll find a link to "Customizing the XmlUrlResolver class".
Use an instance of your custom resolver as the XmlResolver property of the XmlReaderSettings instance that you use in your XmlReader.Create call.