Cómo aplicar una hoja de estilo XSLT en C #

190

Quiero aplicar una hoja de estilo XSLT a un documento XML usando C # y escribir el resultado en un archivo.

Daren Thomas
fuente
11
En realidad, creo que esta es una gran pregunta, y usted proporcionó una buena respuesta. Nominando para reabrir.
Dominic Rodger
Encontré Xslt confuso, así que esto me ayudó github.com/beto-rodriguez/SuperXml
bto.rdz

Respuestas:

177

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 XslTransformestá obsoleto: use en su XslCompiledTransformlugar:

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 Thomas
fuente
Como tomé parte de su respuesta para hacer la clase a la que me estoy vinculando, pensé en ponerla aquí como comentario. Esperemos que simplifique las cosas para las personas: dftr.ca/?p=318
DFTR
Prefiero esta solución en lugar de la versión sobrecargada porque puede configurar XmlReaderSettings y XmlWriterSettings utilizando DTD, esquemas, etc.
Alina B.
2
Necesito hacer esto en VB.NET (que es mi lenguaje "fuera de especificación", prefiero C #), y su respuesta condujo a mi solución. Gracias
Eon
137

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 blocksoporte 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
Heinzi
fuente
16

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.

ManBugra
fuente
66
Esta es una respuesta de solo enlace. Incluya las partes relevantes de las páginas vinculadas.
Thomas Weller
1

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;
    }

}   
Vinod Srivastav
fuente