gpt4 book ai didi

java - XSL XML 转换,更改命名空间值

转载 作者:行者123 更新时间:2023-12-01 11:48:21 26 4
gpt4 key购买 nike

我正在尝试使用 xsl 从 xml 中删除一些元素,并更改 sub1 元素中声明的命名空间值。问题是,当我更改命名空间值时,旧的命名空间声明被插入到子元素(示例中的 sub2)中,我该如何更改代码来防止它发生?

我制作这个例子是因为我无法显示真实的代码

测试.xml

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet version="1.0" href="test.xsl"?>
<lamp:rootElement xmlns:lamp="adgfdgfhdsadfse">
<pref:sub1 ID="someId" xmlns:pref="http://www.myMountain.org/blabla">
<pref:sub2>
Today is tuesday
<pref:sub3 att="someAttribute">
Some text
<pref:sub4>
<pref:emptyElement/>
</pref:sub4>
</pref:sub3>
</pref:sub2>
</pref:sub1>
</lamp:rootElement>

测试.xsl

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:oldPref="http://www.myMountain.org/blabla"
xmlns:pref="http://www.myHill.org/blabla"
exclude-result-prefixes="oldPref">

<!-- For deleting element "sub4" -->
<xsl:template match="oldPref:sub1/oldPref:sub2/oldPref:sub3/oldPref:sub4"/>

<!-- Now i'm replacing the value of "pref" namespace (by creating a new element) -->
<xsl:template match="oldPref:sub1">

<pref:sub1>
<!-- Now i'm copying the elements from old "sub1" to the new one -->
<xsl:apply-templates select="@*|node()"/>
</pref:sub1>

</xsl:template>

<!-- Now im copying the rest of the xml file -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>

</xsl:stylesheet>

我得到 result.xml 的结果错误

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet version="1.0" href="test.xsl"?>
<lamp:rootElement xmlns:lamp="adgfdgfhdsadfse">
<pref:sub1 xmlns:pref="http://www.myHill.org/blabla" ID="someId">
<pref:sub2 xmlns:pref="http://www.myMountain.org/blabla">
Today is tuesday
<pref:sub3 att="someAttribute">
Some text

</pref:sub3>
</pref:sub2>
</pref:sub1>
</lamp:rootElement>

想要的结果

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet version="1.0" href="test.xsl"?>
<lamp:rootElement xmlns:lamp="adgfdgfhdsadfse">
<pref:sub1 xmlns:pref="http://www.myHill.org/blabla" ID="someId">
<pref:sub2>
Today is tuesday
<pref:sub3 att="someAttribute">
Some text

</pref:sub3>
</pref:sub2>
</pref:sub1>
</lamp:rootElement>

我的撒克逊人

Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.4
Project-Name: Saxon-HE
Created-By: 1.7.0_05-b06 (Oracle Corporation)
Main-Class: net.sf.saxon.Transform

这是我正在使用的命令

java net.sf.saxon.Transform -s:test.xml -xsl:test.xsl -o:result.xml

最佳答案

这里的问题是您正在更改 pref:sub1 上的命名空间,但没有更改任何其他 pref: 元素上的命名空间。您需要更通用的东西:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:oldPref="http://www.myMountain.org/blabla"
xmlns:pref="http://www.myHill.org/blabla"
exclude-result-prefixes="oldPref">

<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>

<xsl:template match="oldPref:*">
<xsl:element name="pref:{local-name()}">
<xsl:apply-templates select="@*|node()"/>
</xsl:element>
</xsl:template>

<xsl:template match="oldPref:sub4" />

</xsl:stylesheet>

在示例输入上运行时,结果为:

<?xml-stylesheet version="1.0" href="test.xsl"?>
<lamp:rootElement xmlns:lamp="adgfdgfhdsadfse">
<pref:sub1 ID="someId" xmlns:pref="http://www.myHill.org/blabla">
<pref:sub2>
Today is tuesday
<pref:sub3 att="someAttribute">
Some text

</pref:sub3>
</pref:sub2>
</pref:sub1>
</lamp:rootElement>

关于java - XSL XML 转换,更改命名空间值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28968143/

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