• c#中如何在xml中添加和替换xsl样式表


    在xml文件中,如果要引入样式表xsl,就必须有这样一句:<?xml-stylesheet type="text/xsl" href="sample.xsl"?>

    如果我们要用c#来添加样式表,那么方法如下:

                XmlDocument doc = new XmlDocument();
                doc.Load(xmlFile);

                // Add xsl style to the .xml
                XmlProcessingInstruction xmlXsl = doc.CreateProcessingInstruction("xml-stylesheet", "type=\"text/xsl\" href=\"sample.xsl\""); //调用CreateProcessingInstruction方法
                doc.AppendChild(xmlXsl);
     

        doc.Save(xmlFile);

    如果我们要对xml中已有的样式表进行替换,那么可以采用如下方法:

                XmlDocument doc = new XmlDocument();
                doc.Load(xmlFile);
                XmlNode xmlNode = doc.SelectSingleNode("/processing-instruction('xml-stylesheet')"); //Select the old stylesheet
                //Replace xsl stylesheet to the .xml 

                XmlProcessingInstruction xmlXsl = doc.CreateProcessingInstruction("xml-stylesheet", "type=\"text/xsl\" href=\"newstyle.xsl\"");
                doc.ReplaceChild(xmlXsl, xmlNode); //调用replacechild方法来用新样式表替换旧样式
                doc.Save(xmlFile);

  • 相关阅读:
    Linux下DNS服务器搭建详解
    Oracle 数据泵使用详解--精华版
    Oracle 数据泵详解
    数据泵
    Oracle11g数据库导入Oracle10g数据库操作笔记
    DNS服务器
    spring mvc发送请求404,不能进入处理方法,也不报错
    CentOS设置默认启动命令行(不启动图形界面)
    SQL Server 排序的时候使 null 值排在最后
    Git教程
  • 原文地址:https://www.cnblogs.com/halia/p/2184777.html
Copyright © 2020-2023  润新知