我想使用C#将XSLT样式表应用于XML文档,并将输出写入文件.
我在这里找到了一个可能的答案: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);
根据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
这是一个关于如何在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/
我添加这个只是为了提供更多信息.