如何根据指定的 DTD 验证 xhtml 文件?

发布于 2024-07-22 06:33:15 字数 297 浏览 6 评论 0原文

帮助下获得了我的资源文件

string filePath = Assembly.GetExecutingAssembly().GetName().Name+"." + resourceFileName;    
Stream fileStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(filePath);

我在现在我必须使用 fileStream 将我的 xhtml 文件与嵌入在资源文件中的 DTD 进行比较的 。 怎么做?

I have got my resource file with the help of

string filePath = Assembly.GetExecutingAssembly().GetName().Name+"." + resourceFileName;    
Stream fileStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(filePath);

Now i have to use fileStream to compare my xhtml file against the DTDs that are embedded inside the resource file. How to do that?

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

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

发布评论

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

评论(1

呆萌少年 2024-07-29 06:33:15

好吧,我以为我知道答案(XmlValidatingReader)现在已弃用/过时,具体取决于您的平台,但替换似乎很简单。 示例此处此处 blogspot.com/2008/12/validate-xmlxsd-using-xmlreadersettings.html" rel="nofollow noreferrer">此处。

Well the answer I thought I knew (XmlValidatingReader) is now deprecated/obsolete depending on your platform, but the replacement seems straightforward. Examples here and here.

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