当前位置:  开发笔记 > 编程语言 > 正文

如何在C#中应用XSLT样式表

如何解决《如何在C#中应用XSLT样式表》经验,为你挑选了3个好方法。

我想使用C#将XSLT样式表应用于XML文档,并将输出写入文件.



1> Daren Thomas..:

我在这里找到了一个可能的答案:http://web.archive.org/web/20130329123237/http : //www.csharpfriends.com/Articles/getArticle.aspx?articleID=63

来自文章:

XPathDocument myXPathDoc = new XPathDocument(myXmlFile) ;
XslTransform myXslTrans = new XslTransform() ;
myXslTrans.Load(myStyleSheet);
XmlTextWriter myWriter = new XmlTextWriter("result.html",null) ;
myXslTrans.Transform(myXPathDoc,null,myWriter) ;

编辑:

但我信任的编译器说,XslTransform已经过时了:XslCompiledTransform改用:

XPathDocument myXPathDoc = new XPathDocument(myXmlFile) ;
XslCompiledTransform myXslTrans = new XslCompiledTransform();
myXslTrans.Load(myStyleSheet);
XmlTextWriter myWriter = new XmlTextWriter("result.html",null);
myXslTrans.Transform(myXPathDoc,null,myWriter);


我需要在VB.NET中执行此操作(这是我的"offspec"语言,我更喜欢C#),您的答案导致了我的解决方案.谢谢

2> Heinzi..:

根据Daren的优秀答案,请注意,使用适当的XslCompiledTransform.Transform重载可以显着缩短此代码:

var myXslTrans = new XslCompiledTransform(); 
myXslTrans.Load("stylesheet.xsl"); 
myXslTrans.Transform("source.xml", "result.html"); 

(很抱歉将此作为答案,但code block评论中的支持相当有限.)

在VB.NET中,您甚至不需要变量:

With New XslCompiledTransform()
    .Load("stylesheet.xsl")
    .Transform("source.xml", "result.html")
End With



3> ManBugra..:

这是一个关于如何在MSDN上用C#进行XSL转换的教程:

http://support.microsoft.com/kb/307322/en-us/

在这里如何写文件:

http://support.microsoft.com/kb/816149/en-us

只是作为旁注:如果你想进行验证,这里是另一个教程(对于DTD,XDR和XSD(= Schema)):

http://support.microsoft.com/kb/307379/en-us/

我添加这个只是为了提供更多信息.


这是一个仅限链接的答案.请包含链接页面的相关部分.
推荐阅读
夏晶阳--艺术
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有