如何根据指定的 DTD 验证 xhtml 文件?
帮助下获得了我的资源文件
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我以为我知道答案(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.