< ?xml version="1.0" encoding="utf-8"?>
< xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
< xsl:template match="/">
< html>
< body>
< h2 align="center">
短途餐饮物流平台实体数据分析< br />
< /h2>
< xsl:apply-templates select="Entities/Entity"/>//对Entity节点应用模板
< /body>
< /html>
< /xsl:template>
//Entity节点所对应的模板
< xsl:template match="Entity ">
< b>
< font color="bisgue">
< xsl:value-of select="@title"/>(< xsl:value-of select="@name"/>)数据分析:
< /font>
< br />
< /b>
< table width="70%" bordercolor="black" border="1">
< tr align="center" style="background-color:White;">
< th width="20%" >数据名称< /th>
< th width="20%">代码< /th>
< th width="20%">类型< /th>
< th width="20%">是否可以为空< /th>
< th>描述< /th>
< /tr>
< xsl:for-each select="Item">//对节点的批量处理,他与元素xsl:apply-templates是两种不同的方法但输出的结果是想通的。
< tr align="center">
< td>
< xsl:value-of select="@title"/>
< /td>
< td>
< xsl:value-of select="@name"/>
< /td>
< td>
< xsl:value-of select="@type"/>
< /td>
< td>
< xsl:apply-templates select="@require"/>
< xsl:if test="not(@require)">//判断是否存在某个节点,用函数not(欲判断的节点)
否
< /xsl:if>
< /td>
< td>
< xsl:value-of select="(@description)"/>
< xsl:if test="not(@description)">
null
< /xsl:if>
< /td>
< /tr>
< /xsl:for-each>
< /table>
< br />
< /xsl:template>
< xsl:template match="@require">
是
< /xsl:template>
< /xsl:stylesheet>
以下是XML文件在应用到xlst后输出的格式
公司客户(Company)数据分析:
数据名称 | 代码 | 类型 | 是否可以为空 | 描述 |
---|---|---|---|---|
名称 | Name | text | 否 | null |
编号 | Number | text | 否 | null |
经理 | Manage | text | 否 | null |
电话 | Phone | text | 否 | null |
联系人 | Linkman | text | 否 | null |
地址 | Address | text | 否 | null |
传真 | Fax | text | 是 | null |
用户(User)数据分析:
数据名称 | 代码 | 类型 | 是否可以为空 | 描述 |
---|---|---|---|---|
电子邮箱 | text | 否 | null | |
密码 | Password | text | 否 | null |
消费总额 | TotalConsumption | int | 否 | null |
真实姓名 | Name | text | 是 | null |
公司 | Company | entity | 是 | null |
用户地址(UserAddress)数据分析:
数据名称 | 代码 | 类型 | 是否可以为空 | 描述 |
---|---|---|---|---|
用户 | User | entity | 否 | null |
地址 | Address | text | 否 | null |
电话 | Phone | text | 否 | null |
是否是默认 | IsDefault | bool | 否 | null |
下面代码将XML文件转化为和HTML文件:
/// < summary>
///将xml转化为html
/// < /summary>
/// < param name="XmlPath">xml文件路径< /param>
/// < param name="XslFilePath">xslt文件路径< /param>
/// < param name="htmlFilePath">声称的html文件路径< /param>
public static void XmlTransToHtml(string xmlPath, string xslFilePath, string htmlFilePath)
{
//生成Html文件路径
string HtmlFilePath = htmlFilePath;
XPathDocument myXPathDoc = new XPathDocument(xmlPath);
XslCompiledTransform myXslTrans = new XslCompiledTransform();
//加载XSL文件
myXslTrans.Load(xslFilePath);
XmlTextWriter myWriter = new XmlTextWriter(HtmlFilePath, System.Text.Encoding.Default);
myXslTrans.Transform(myXPathDoc, null, myWriter);
myWriter.Close();
}
在测试类中调用这个方法,
运行测试就会得到我们需要的html文件。
本文作者:未知