gpt4 book ai didi

使用 XSLT 的 XML 转换生成具有重复行的文本文件

转载 作者:数据小太阳 更新时间:2023-10-29 02:56:53 26 4
gpt4 key购买 nike

我是 XSLT 的新手,我正在研究一个小示例,我想在其中使用 XSLT 转换 XML 输入文件以生成文本文件。

这是我的输入 xml 文件:

<?xml version="1.0" ?>
<result>
<users>
<user>
<user-name>user 1</user-name>
<blood-group>A-</blood-group>
<id>4</id>
<col1>c1</col1>
<col2>c2</col2>
<col4>c4</col4>
</user>
<user>
<user-name>user 2</user-name>
<blood-group>B+</blood-group>
<id>3</id>
<col3>c3</col3>
<col4>c4</col4>
</user>
</users>
</result>

我想在用 XSLT 转换后得到这样的输出:

User Name | Blood Group | Id | col1 | col2 | col3 | col4
user 1 | A- | 4 | c1 | null | null | null
user 1 | A- | 4 | null | c2 | null | null
user 1 | A- | 4 | null | null | null | c4
user 2 | B+ | 3 | null | null | c3 | null
user 2 | B+ | 3 | null | null | null | c4

想法是每条记录将重复记录所具有的 col 元素的数量,并且输出文本的每一行都将具有特定单个 col 的值> 元素和 col 的所有其他剩余值将为 null

我创建了一个这样的 XSL 文件:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
extension-element-prefixes="str">

<xsl:output method="text" encoding="UTF-8"/>

<xsl:template match="/result">
<xsl:text>User Name | Blood Group | Id | col1 | col2 | col3 | col4&#10;</xsl:text>
<xsl:for-each select="users/user">
<xsl:value-of select="str:align(user-name, ' | ', 'left')" />
<xsl:value-of select="str:align(blood-group, ' | ', 'left')" />
<xsl:value-of select="str:align(id, ' | ', 'left')" />
<xsl:value-of select="str:align(col1, ' | ', 'left')" />
<xsl:value-of select="str:align(col2, ' | ', 'left')" />
<xsl:value-of select="str:align(col3, ' | ', 'left')" />
<xsl:value-of select="col4" />
<xsl:if test="position()!=last()">
<xsl:text>&#10;</xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

使用此 XSL,我得到的输出为:

User Name | Blood Group | Id | col1 | col2 | col3 | col4
user 1 | A- | 4 | c1 | c2 | | c4
user 2 | B+ | 3 | | | c3 | c4

我不清楚可以使用哪些函数来获得所需的输出。有人可以帮帮我吗?

帮我做转换的java代码是:

public static void main(String[] args) {
String path="/";
String xml = path+"input.xml";
String xslt = path+"input.xsl";
String output = path+"output.txt";
try {
TransformerFactory tf = TransformerFactory.newInstance();
Transformer tr = tf.newTransformer(new StreamSource(xslt));
tr.transform(new StreamSource(xml), new StreamResult(
new FileOutputStream(output)));

System.out.println("Output to " + output);
} catch (Exception e) {
System.out.println(e);
e.printStackTrace();
}
}

更新:

使用 michael 的回答中提供的 XSL 文件给我的输出为:

User Name | Blood Group | Id | col1 | col2 | col3 | col4
user 1 | A- | 4 | c1 | | |
user 2 | B+ | 3 | | | | c4
user 2 | B+ | 3 | | | c3 |
user 2 | B+ | 3 | | | | c4

最佳答案

这样试试?

XSLT 1.0 (需要支持 EXSLT str:align() 函数)

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
extension-element-prefixes="str">
<xsl:output method="text" encoding="UTF-8"/>

<xsl:template match="/result">
<xsl:text>User Name | Blood Group | Id | col1 | col2 | col3 | col4&#10;</xsl:text>
<xsl:for-each select="users/user/*[starts-with(name(), 'col')]">
<xsl:value-of select="str:align(../user-name, ' | ', 'left')" />
<xsl:value-of select="str:align(../blood-group, ' | ', 'left')" />
<xsl:value-of select="str:align(../id, ' | ', 'left')" />
<xsl:value-of select="str:align(self::col1, ' | ', 'left')" />
<xsl:value-of select="str:align(self::col2, ' | ', 'left')" />
<xsl:value-of select="str:align(self::col3, ' | ', 'left')" />
<xsl:value-of select="self::col4" />
<xsl:if test="position()!=last()">
<xsl:text>&#10;</xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:template>

</xsl:stylesheet>

关于使用 XSLT 的 XML 转换生成具有重复行的文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25846017/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com