


XSL即可扩展的样式表文件。 可以格式化xml的显示,也可以将xml转换成需要的另一种格式。
学习XSL必须熟悉XPath。XSL和XPath一样简单强大,容易学习。
1. XSL既然可以格式化xml的显示样式,我们先来看如何在xml中引用xsl文件
如下代码示例:
只需在xml文件的文档声明后面添加即可
2. XSL的格式
XSL也是一个标准的xml文件,它以xml文档声明开始,根元素必须是xsl:styleshee,同时根元素必须有version属性指定xsl的版本,和xmlns:xsl=” http://www.php.cn/”指定xsl命名空间,如下示例
3. Xsl要点 如下示例xml
<?xml version="1.0" encoding="utf-8" ?> <?xml-stylesheet type="text/xsl" href="pets-templates.xsl"?> <pets> <pig color="blue" weight="100"> <price>100</price> <desc>this is a blue pig</desc> </pig> <cat color="red" weight="9"> <price>80</price> <desc>this is a red cat</desc> </cat> <dog color="green" weight="15"> <price>80</price> <desc>this is a green dog</desc> </dog> <cat color="green" weight="15"> <price>80</price> <desc>this is a green cat</desc> </cat> <dog color="blue" weight="10"> <price>100</price> <desc>this is a blue dog</desc> </dog> <dog color="red" weight="9"> <price>80</price> <desc>this is a red dog</desc> </dog> </pets>
上面的xml在通过xsl格式化之后的显示效果如下:
1) xsl:template定义匹配节点的转换模板,属性match=”xpath expression”用来定义模板匹配的元素
如下定义匹配根节点的模板
<xsl:template match=”/”> </xsl:template>
2) xsl:for-each循环显示select=”xpath expression”选择节点的转换 (类似编程语言中的foreach语句),
如下示例,选择了pets下面的子元素,并循环显示子元素的几点名字:
<xsl:for-each select=”/pets/*”> <xsl:value-of select=”name()”/> </xsl:for-each>
3) xsl:if 元素条件显示节点(类似编程语言中的if语句)注意小于号大于号要分别用67bffed8d39c986beaddeed3e8cd5568替代
<xsl:if test=”@weight < 10”> <i>its weight is less than 10 km</i> </xsl:if>
4) xsl:choose 多分支条件显示 (类似编程语言中的switch语句)
<xsl:choose > <xsl:when test=”name() = ‘pig’”> <i>this is a pig</i> </xsl:when> <xsl:otherwise> <i>this is not a pig</i> </xsl:otherwise> </xsl:choose>
5) xsl:value-of 显示选择节点或者属性的值
选择子节点price
<xsl:value-of select=”pets/*/price”/>
选择属性weight
<xsl:value-of select=”pets/*/@weight”/>
6) xsl:attribute 构造xml节点的属性
用来向节点添加属性,例如:
<font> <xsl:attribute name=”color”><xsl:value-of select=”pets/*/@color”/></xsl:attribute> </font>
将输出
7) xsl:apply-templates 应用模板
如果xml文件结构比较复杂,可以定义多个template,然后使用
请看下面示例xslt文件pets-templates.xsl
完整的示例xsl文件:pets.xsl
<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <head> <META http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>lovely pets</title> <style type="text/css"> ul{margin:10px 0 10px 0;padding:0;width:400px;text-align:left;} li{height:60px;display:block;list-style:none;padding:4px;border:1px solid #f0f0f0;margin:5px;} </style> </head> <body> <center> <h1 id="lovely-nbsp-pets">lovely pets</h1> <ul> <xsl:for-each select="pets/*"> <li> <img align="right" alt="XSLT syntax—detailed explanation of sample code for using XSLT to convert xml documents in .net" > <xsl:choose> <xsl:when test="name() = 'dog'"> <xsl:attribute name="src">http://www.php.cn/;/xsl:attribute> </xsl:when> <xsl:when test="name() = 'pig'"> <xsl:attribute name="src">http://www.php.cn/;/xsl:attribute> </xsl:when> <xsl:otherwise> <xsl:attribute name="src">http://www.php.cn/@N00.jpg?1143660418</xsl:attribute> </xsl:otherwise> </xsl:choose> </img> <font> <xsl:attribute name="face">Courier</xsl:attribute> <xsl:attribute name="color"> <xsl:value-of select="@color"/> </xsl:attribute> <xsl:value-of select="name()"/> </font> said: "<xsl:value-of select="desc"/>" weight:<xsl:value-of select="@weight"/> <xsl:if test="@weight < 10"> <p> <i>its weight is less than 10 km</i> </p> </xsl:if> </li> </xsl:for-each> </ul> </center> </body> </html> </xsl:template> </xsl:stylesheet>
完整示例文件 pets-templates.xsl:
<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <head> <META http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>lovely pets</title> <style type="text/css"> ul{margin:10px 0 10px 0;padding:0;width:400px;text-align:left;} li{height:60px;display:block;list-style:none;padding:4px;border:1px solid #f0f0f0;margin:5px;} </style> </head> <body> <center> <h1 id="lovely-nbsp-pets">lovely pets</h1> <ul> <xsl:apply-templates select="pets" /> </ul> </center> </body> </html> </xsl:template> <xsl:template match="pets"> <xsl:apply-templates select="dog"></xsl:apply-templates> <xsl:apply-templates select="pig"></xsl:apply-templates> <xsl:apply-templates select="cat"></xsl:apply-templates> </xsl:template> <xsl:template match="dog"> <xsl:for-each select="."> <li> <img align="right" alt="XSLT syntax—detailed explanation of sample code for using XSLT to convert xml documents in .net" > <xsl:attribute name="src">http://www.php.cn/;/xsl:attribute> </img> <font> <xsl:attribute name="face">Courier</xsl:attribute> <xsl:attribute name="color"> <xsl:value-of select="@color"/> </xsl:attribute> dog </font> said: "<xsl:value-of select="desc"/>" weight:<xsl:value-of select="@weight"/> <xsl:if test="@weight < 10"> <p> <i>its weight is less than 10 km</i> </p> </xsl:if> </li> </xsl:for-each> </xsl:template> <xsl:template match="pig"> <xsl:for-each select="."> <li> <img align="right" alt="XSLT syntax—detailed explanation of sample code for using XSLT to convert xml documents in .net" > <xsl:attribute name="src">http://www.php.cn/;/xsl:attribute> </img> <font> <xsl:attribute name="face">Courier</xsl:attribute> <xsl:attribute name="color"> <xsl:value-of select="@color"/> </xsl:attribute> pig </font> said: "<xsl:value-of select="desc"/>" weight:<xsl:value-of select="@weight"/> <xsl:if test="@weight < 10"> <p> <i>its weight is less than 10 km</i> </p> </xsl:if> </li> </xsl:for-each> </xsl:template> <xsl:template match="cat"> <xsl:for-each select="."> <li> <img align="right" alt="XSLT syntax—detailed explanation of sample code for using XSLT to convert xml documents in .net" > <xsl:attribute name="src">http://www.php.cn/@N00.jpg?1143660418</xsl:attribute> </img> <font> <xsl:attribute name="face">Courier</xsl:attribute> <xsl:attribute name="color"> <xsl:value-of select="@color"/> </xsl:attribute> cat </font> said: "<xsl:value-of select="desc"/>" weight:<xsl:value-of select="@weight"/> <xsl:if test="@weight < 10"> <p> <i>its weight is less than 10 km</i> </p> </xsl:if> </li> </xsl:for-each> </xsl:template> </xsl:stylesheet>
在c#.net中使用XslCompiledTransform转换xml文档,XslTransform也可以使用,但是这个类已经被微软标记为过时,最好不要再用了,如下代码示例:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Xml; namespace UseXslt { class Program { static void Main(string[] args) { //声明XslTransform类实例 System.Xml.Xsl.XslCompiledTransform trans = new System.Xml.Xsl.XslCompiledTransform(); string xsltFile = @"X:\about.net\System.Xml\example\pets.xsl"; using (StreamReader rdr = new StreamReader(xsltFile)) { using (XmlReader xmlRdr = XmlReader.Create(rdr)) { //载入xsl文件 trans.Load(xmlRdr); } } string inputFile = @"X:\about.net\System.Xml\example\pets.xml"; string outputFile = @"X:\about.net\System.Xml\example\pets-out.htm"; //转化源文件输出到输出文件outputFile trans.Transform(inputFile, outputFile); } } }
有一点需要注意,使用XslCompiledTransform转换出来的文件,是一个html格式的,这个类会自动在html的head标签中添加一个未关闭的meta标签 ;微软帮我们想的太多了。
Xslt还可以指定参数,定义变量,有关这些方面请查看相关文档。
The above is the detailed content of XSLT syntax—detailed explanation of sample code for using XSLT to convert xml documents in .net. For more information, please follow other related articles on the PHP Chinese website!

一、XML外部实体注入XML外部实体注入漏洞也就是我们常说的XXE漏洞。XML作为一种使用较为广泛的数据传输格式,很多应用程序都包含有处理xml数据的代码,默认情况下,许多过时的或配置不当的XML处理器都会对外部实体进行引用。如果攻击者可以上传XML文档或者在XML文档中添加恶意内容,通过易受攻击的代码、依赖项或集成,就能够攻击包含缺陷的XML处理器。XXE漏洞的出现和开发语言无关,只要是应用程序中对xml数据做了解析,而这些数据又受用户控制,那么应用程序都可能受到XXE攻击。本篇文章以java

如何用PHP和XML实现网站的分页和导航导言:在开发一个网站时,分页和导航功能是很常见的需求。本文将介绍如何使用PHP和XML来实现网站的分页和导航功能。我们会先讨论分页的实现,然后再介绍导航的实现。一、分页的实现准备工作在开始实现分页之前,需要准备一个XML文件,用来存储网站的内容。XML文件的结构如下:<articles><art

当今人工智能(AI)技术的发展如火如荼,它们在各个领域都展现出了巨大的潜力和影响力。今天大姚给大家分享4个.NET开源的AI模型LLM相关的项目框架,希望能为大家提供一些参考。https://github.com/YSGStudyHards/DotNetGuide/blob/main/docs/DotNet/DotNetProjectPicks.mdSemanticKernelSemanticKernel是一种开源的软件开发工具包(SDK),旨在将大型语言模型(LLM)如OpenAI、Azure

当我们处理数据时经常会遇到将XML格式转换为JSON格式的需求。PHP有许多内置函数可以帮助我们执行这个操作。在本文中,我们将讨论将XML格式转换为JSON格式的不同方法。

Pythonxmltodict对xml的操作xmltodict是另一个简易的库,它致力于将XML变得像JSON.下面是一个简单的示例XML文件:elementsmoreelementselementaswell这是第三方包,在处理前先用pip来安装pipinstallxmltodict可以像下面这样访问里面的元素,属性及值:importxmltodictwithopen("test.xml")asfd:#将XML文件装载到dict里面doc=xmltodict.parse(f

1.在Python中XML文件的编码问题1.Python使用的xml.etree.ElementTree库只支持解析和生成标准的UTF-8格式的编码2.常见GBK或GB2312等中文编码的XML文件,用以在老旧系统中保证XML对中文字符的记录能力3.XML文件开头有标识头,标识头指定了程序处理XML时应该使用的编码4.要修改编码,不仅要修改文件整体的编码,还要将标识头中encoding部分的值修改2.处理PythonXML文件的思路1.读取&解码:使用二进制模式读取XML文件,将文件变为

使用nmap-converter将nmap扫描结果XML转化为XLS实战1、前言作为网络安全从业人员,有时候需要使用端口扫描利器nmap进行大批量端口扫描,但Nmap的输出结果为.nmap、.xml和.gnmap三种格式,还有夹杂很多不需要的信息,处理起来十分不方便,而将输出结果转换为Excel表格,方面处理后期输出。因此,有技术大牛分享了将nmap报告转换为XLS的Python脚本。2、nmap-converter1)项目地址:https://github.com/mrschyte/nmap-


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
