我和我一起关注XML!
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Rowsets CachedTime="" DateCreated="2013-07-30T00:13:32" EndDate="2013-07-30T00:13:29" StartDate="2013-07-29T23:13:29" Version="12.2.4 Build(92)">
<Rowset>
<Columns>
<Column Description="Name" MaxRange="1" MinRange="0" Name="Name" SQLDataType="-9" SourceColumn="Name"/>
<Column Description="Value" MaxRange="1" MinRange="0" Name="Value" SQLDataType="-9" SourceColumn="Value"/>
<Column Description="Datatype" MaxRange="1" MinRange="0" Name="Datatype" SQLDataType="-9" SourceColumn="Datatype"/>
</Columns>
<Row>
<Name>NameOfEquipment</Name>
<Value>OLOA-A</Value>
<Datatype>String</Datatype>
</Row>
<Row>
<Name>UnloadDate</Name>
<Value>2014-01-25T11:00:05</Value>
<Datatype>String</Datatype>
</Row>
</Rowset>
<Rowset>
<Columns>
<Column Description="Name" MaxRange="1" MinRange="0" Name="Name" SQLDataType="-9" SourceColumn="Name"/>
<Column Description="Value" MaxRange="1" MinRange="0" Name="Value" SQLDataType="-9" SourceColumn="Value"/>
<Column Description="Datatype" MaxRange="1" MinRange="0" Name="Datatype" SQLDataType="-9" SourceColumn="Datatype"/>
</Columns>
<Row>
<Name>NameOfEquipment</Name>
<Value>OLOA-B</Value>
<Datatype>String</Datatype>
</Row>
<Row>
<Name>UnloadDate</Name>
<Value>2014-01-22T13:00:05</Value>
<Datatype>String</Datatype>
</Row>
</Rowset>
<Rowset>
<Columns>
<Column Description="Name" MaxRange="1" MinRange="0" Name="Name" SQLDataType="-9" SourceColumn="Name"/>
<Column Description="Value" MaxRange="1" MinRange="0" Name="Value" SQLDataType="-9" SourceColumn="Value"/>
<Column Description="Datatype" MaxRange="1" MinRange="0" Name="Datatype" SQLDataType="-9" SourceColumn="Datatype"/>
</Columns>
<Row>
<Name>NameOfEquipment</Name>
<Value>OLOA-C</Value>
<Datatype>String</Datatype>
</Row>
<Row>
<Name>UnloadDate</Name>
<Value>2014-01-19T08:10:05</Value>
<Datatype>String</Datatype>
</Row>
</Rowset>
</Rowsets>
现在,我正在使用以下XSLT将其转换为不同的格式:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output indent="yes"/>
<xsl:template match="/*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<Rowset>
<Columns>
<xsl:apply-templates mode="cols" select="Rowset[1]/Row"/>
</Columns>
<xsl:apply-templates select="Rowset"/>
</Rowset>
</xsl:copy>
</xsl:template>
<xsl:template match="Row" mode="cols">
<Column Description="" MaxRange="1" MinRange="0" Name="{Name}" SQLDataType="1" SourceColumn="{Name}"/>
</xsl:template>
<xsl:template match="Rowset">
<Row>
<xsl:apply-templates select="Row/Name"/>
</Row>
</xsl:template>
<xsl:template match="Name">
<xsl:element name="{.}">
<xsl:value-of select="../Value"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
我得到如下正确的输出:
<?xml version="1.0" encoding="utf-8" ?>
<Rowsets CachedTime="" DateCreated="2013-07-30T00:13:32" EndDate="2013-07-30T00:13:29" StartDate="2013-07-29T23:13:29" Version="12.2.4 Build(92)">
<Rowset>
<Columns>
<Column Description="" MaxRange="1" MinRange="0" Name="NameOfEquipment" SQLDataType="1" SourceColumn="NameOfEquipment"/>
<Column Description="" MaxRange="1" MinRange="0" Name="UnloadDate" SQLDataType="1" SourceColumn="UnloadDate"/>
</Columns>
<Row>
<NameOfEquipment>OLOA-A</NameOfEquipment>
<UnloadDate>2014-01-25T11:00:05</UnloadDate>
</Row>
<Row>
<NameOfEquipment>OLOA-B</NameOfEquipment>
<UnloadDate>2014-01-22T13:00:05</UnloadDate>
</Row>
<Row>
<NameOfEquipment>OLOA-C</NameOfEquipment>
<UnloadDate>2014-01-19T08:10:05</UnloadDate>
</Row>
</Rowset>
</Rowsets>
现在我的要求是,我需要将<UnloadDate>
转换为“DD / MM / YYYY:HH:MM:SS”格式如果我将Plant改为印度,我需要将其转换为“MM / DD / YYYY:HH:MM:SS”
我怎样才能做到这一点?
答案 0 :(得分:1)
我同意@Tomalak你应该三思而后行。我也对:
分隔日期和时间感到困惑。但是,如果您确定,可以将这两个模板添加到样式表中:
<xsl:template match="Name[.='UnloadDate']">
<UnloadDate>
<xsl:call-template name="convertDate">
<xsl:with-param name="iDate" select="../Value"/>
</xsl:call-template>
</UnloadDate>
</xsl:template>
<xsl:template name="convertDate">
<xsl:param name="iDate"/>
<xsl:param name="separator" select="'/'"/>
<xsl:param name="yyyy" select="substring($iDate, 1, 4)"/>
<xsl:param name="mm" select="substring($iDate, 6, 2)"/>
<xsl:param name="dd" select="substring($iDate, 9, 2)"/>
<xsl:param name="t" select="substring($iDate, 12, 8)"/>
<xsl:choose>
<xsl:when test="$Plant='India'">
<xsl:value-of select="concat($dd, $separator, $mm, $separator, $yyyy, ':', $t)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat($mm, $separator, $dd, $separator, $yyyy, ':', $t)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>