A XSLT Sample<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
(Wang hailong)
在中文网站到看到了不少关于XSLT的例子,可是大部分都属于入门性质的。下面给出一个XSLT的例子,说明XSLT的一些典型的用法。
XSLT1.0规范定义了document()函数,提供了初步的处理多个xml输入文件的功能。我们用这个功能来实现新旧xml文件的比较。
比如,我们有一个xml格式产品列表,列出一些关于XSLT处理的(Open Source)软件。
每隔一段时间,我们就更新一次产品列表。
下面的Product.1.xml是第一个产品列表。
product.1.xml
<?xml version="1.0" ?>
<product-root>
<!-- no histroy yet -->
<product-history/>
<product>
<product-id>001</product-id>
<product-name>Apache Xalan xslt</product-name>
<url>http://xml.apache.org/xalan-j/</url>
</product>
<product>
<product-id>002</product-id>
<product-name>saxon xslt</product-name>
<url>http://saxon.sourceforge.net/</url>
</product>
</product-root>
过了一段时间,产品列表更新为Product.2.xml。其中的product-history元素纪录以前的产品列表——Product.1.xml。
product.2.xml
<?xml version="1.0" ?>
<product-root>
<!-- refer to last product list -->
<product-history>product.1.xml</product-history>
<product>
<product-id>001</product-id>
<product-name>Apache Xalan xslt</product-name>
<url>http://xml.apache.org/xalan-j/</url>
</product>
<product>
<product-id>002</product-id>
<product-name>saxon xslt</product-name>
<url>http://saxon.sourceforge.net/</url>
</product>
<product>
<product-id>003</product-id>
<product-name>XT xslt</product-name>
<url>http://www.4xt.org/</url>
</product>
<product>
<product-id>004</product-id>
<product-name>oasis xslt</product-name>
<url>http://www.oasis-open.org/</url>
</product>
</product-root>
我们用下面的xsl文件处理product.2.xml,查找新增加的product。
product.diff.xsl
<?xml version="1.0"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="product-root">
<difference>
<!-- get all history product-->
<xsl:variable name="history" select="document(product-history)//product" />
<!-- copy the product which is not in product history -->
<xsl:copy-of select="product[not(product-id=$history/product-id)]"/>
</difference>
</xsl:template>
</xsl:transform>
这个XSL文件虽然短小,却包括了XSLT很重要的一些特性和XPath的很典型的用法。因为product-history的内容是product.1.xml,所以document(product-history)取得上次产品列表product.1.xml的根元素。
document(product-history)//product取得product.1.xml的根元素下面所有的product元素。我们也可以写成document(product-history)/product-root/product,这种写法更加确定,指定只选取product-root元素下面的product。
注意,product[not(product-id=$history/product-id)]表示“product-id和history product-id都不相同的product”;product[product-id!=$history/product-id]表示“product-id 和history product-id至少有一个不相同的product”。
处理后的xml结果如下。
<?xml version="1.0" encoding="UTF-8"?>
<difference>
<product>
<product-id>003</product-id>
<product-name>XT xslt</product-name>
<url>http://www.4xt.org/</url>
</product>
<product>
<product-id>004</product-id>
<product-name>oasis xslt</product-name>
<url>http://www.oasis-open.org/</url>
</product>
</difference>
关于如何运行这个例子或其它的XSLT例子。首先,您需要一个XSLT转换工具。哪里获得XSLT转换工具呢?参见上面的产品列表product.2.xml,里面就包括了很好的XSLT转换工具。访问里面的url。:-)
分享到:
相关推荐
### XSLT简单教程——XSLT的实例详解 #### 一、XSLT简介与工作原理 XSLT(Extensible Stylesheet Language Transformations)是一种用于转换XML文档的语言。它允许开发人员按照预定义的规则对XML文档进行转换,...
在XSLT(可扩展样式表语言转换)中调用Java是一种常见的技术,它允许开发者利用XSLT处理XML文档时,与Java代码进行交互,从而实现更复杂的逻辑和功能。这种结合使得XSLT不仅可以进行简单的数据转换,还能执行更强大...
Learning XSLT moves smoothly from the simple ... Learning XSLT also explains how the XML Path Language (XPath) is used by XSLT and provides a glimpse of what the future holds for XSLT 2.0 and XPath 2.0.
**XSLT标准参考手册详解** XSLT(Extensible Stylesheet Language Transformations)是一种用于转换XML(Extensible Markup Language)文档的语言。它基于XPath,主要用于将XML数据转换成其他形式,如HTML、PDF或者...
TestNG XSLT 1.1.2 是一个专门针对TestNG测试框架的扩展,它提供了将TestNG的测试结果转换为易于阅读和分析的XSLT格式的能力。这个压缩包文件“testng-xslt-1.1.2.zip”包含了这个扩展的源代码、文档以及可能的库...
《XSLT中文参考手册》是一本专注于XSLT技术的详尽指南,旨在帮助中文读者深入理解和应用这一强大的XML转换语言。XSLT(eXtensible Stylesheet Language Transformations)是W3C制定的一种标准,用于将XML文档转换为...
标题:“XSLT扩展PDF教程” 描述:本教程旨在深入探讨XSLT(Extensible Stylesheet Language Transformations)的扩展功能,尤其是通过EXSLT(EXtensions to XSLT)来增强XSLT的处理能力,从而实现更复杂的转换任务...
xslt手册.chm java实现xslt 简单的 Xalan 扩展函数 - 工程 xslt知识点速查手册.doc 2 Javascript XSLT 处理XML文件(IE and Firefox).doc Saxon 剖析 XSLT 处理器.doc
### Java与XSLT结合应用的关键知识点 #### 标题:Java and XSLT **标题解析**:本文档主要探讨了Java与XSLT(Extensible Stylesheet Language Transformations)之间的结合应用。XSLT是一种用于转换XML文档的语言...
Extensible Stylesheet Language Transformations (XSLT) is a language for transforming XML documents and data from one format to another. Answering the demand for an introductory book on XSLT processing...
本参考手册旨在深入探讨XSLT的语法和应用,帮助开发者更好地理解和运用这种语言。** XSLT的核心概念是样式表,它由一系列的模板规则组成。这些模板规则定义了如何处理XML文档中的特定元素。XSLT基于XPath,一种在...
This book, as the title implies, is primarily a practical reference book for professional XSLT developers. It assumes no previous knowledge of the language, and many developers have used it as their ...
### XSLT 调用 Java 的类方法详解 #### 一、背景介绍 XSLT(Extensible Stylesheet Language Transformations)是一种用于XML文档转换的语言。它允许开发者将一个XML文档转换为另一种结构的XML文档或其他格式的文档...
### XSLT经典教程知识点概览 #### 一、XPath简介 **XPath** 是一门用于在 **XML** 文档中查找信息的语言。它提供了一种简单有效的方法来定位和提取 **XML** 数据中的特定部分。这门语言的重要性在于它是许多高级 **...
XSLT,全称为“可扩展样式表语言转换”(eXtensible Stylesheet Language Transformations),是一种功能强大的XML处理工具。它允许我们通过使用样式表来转换XML文档,从而改变XML数据的呈现方式,实现数据与表现的...
而"Laravel开发-laravel-xslt"这个主题涉及到的是在Laravel中使用XSLT(Extensible Stylesheet Language Transformations)进行模板处理。XSLT是一种强大的语言,用于将XML数据转换成其他形式,如HTML、PDF或者其他...
在IT领域,XML(eXtensible Markup Language)是一种用于存储和传输数据的标准化格式,而XSLT(XSL Transformations)则是用于转换XML文档的样式表语言。本示例涉及的是使用C#编程语言来执行XSLT转换的过程,这对于...
此外,调试XSLT转换也是一项重要的技能,通常可以通过XSLT处理器提供的功能或者专门的XSLT调试工具来实现。 总之,XSLT是XML处理中不可或缺的一部分,它提供了一种强大的方式来转换和呈现XML数据,广泛应用于数据...
### XSLT标准详解 #### 一、XSLT简介 XSLT(Extensible Stylesheet Language Transformations)是一种用于转换XML文档的标准语言。它由W3C(World Wide Web Consortium)制定并发布,旨在为用户提供一种高效且灵活...