Quiero aplicar una hoja de estilo XSLT a un documento XML usando C # y escribir el resultado en un archivo.
Quiero aplicar una hoja de estilo XSLT a un documento XML usando C # y escribir el resultado en un archivo.
Respuestas:
Encontré una posible respuesta aquí: http://web.archive.org/web/20130329123237/http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=63
Del artículo:
XPathDocument myXPathDoc = new XPathDocument(myXmlFile) ;
XslTransform myXslTrans = new XslTransform() ;
myXslTrans.Load(myStyleSheet);
XmlTextWriter myWriter = new XmlTextWriter("result.html",null) ;
myXslTrans.Transform(myXPathDoc,null,myWriter) ;
Editar:
Pero mi compilador de confianza dice que XslTransform
está obsoleto: use en su XslCompiledTransform
lugar:
XPathDocument myXPathDoc = new XPathDocument(myXmlFile) ;
XslCompiledTransform myXslTrans = new XslCompiledTransform();
myXslTrans.Load(myStyleSheet);
XmlTextWriter myWriter = new XmlTextWriter("result.html",null);
myXslTrans.Transform(myXPathDoc,null,myWriter);
Según la excelente respuesta de Daren, tenga en cuenta que este código puede acortarse significativamente mediante el uso de la sobrecarga XslCompiledTransform.Transform adecuada :
var myXslTrans = new XslCompiledTransform();
myXslTrans.Load("stylesheet.xsl");
myXslTrans.Transform("source.xml", "result.html");
(Perdón por plantear esto como respuesta, pero el code block
soporte en los comentarios es bastante limitado).
En VB.NET, ni siquiera necesita una variable:
With New XslCompiledTransform()
.Load("stylesheet.xsl")
.Transform("source.xml", "result.html")
End With
Aquí hay un tutorial sobre cómo hacer transformaciones XSL en C # en MSDN:
http://support.microsoft.com/kb/307322/en-us/
y aquí cómo escribir archivos:
http://support.microsoft.com/kb/816149/en-us
solo como una nota al margen: si desea hacer la validación también aquí hay otro tutorial (para DTD, XDR y XSD (= Esquema)):
http://support.microsoft.com/kb/307379/en-us/
Agregué esto solo para proporcionar más información.
Esto podría ayudarte
public static string TransformDocument(string doc, string stylesheetPath)
{
Func<string,XmlDocument> GetXmlDocument = (xmlContent) =>
{
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.LoadXml(xmlContent);
return xmlDocument;
};
try
{
var document = GetXmlDocument(doc);
var style = GetXmlDocument(File.ReadAllText(stylesheetPath));
System.Xml.Xsl.XslCompiledTransform transform = new System.Xml.Xsl.XslCompiledTransform();
transform.Load(style); // compiled stylesheet
System.IO.StringWriter writer = new System.IO.StringWriter();
XmlReader xmlReadB = new XmlTextReader(new StringReader(document.DocumentElement.OuterXml));
transform.Transform(xmlReadB, null, writer);
return writer.ToString();
}
catch (Exception ex)
{
throw ex;
}
}