私はこのように構造化されたxmlドキュメントを持っています:-
<catalog xmlns="format_old" xmlns:final="format_new">
<final:book>
<final:title>blah</final:title>
<final:author>more blah</final:author>
</final:book>
<book>
<description title="blah2"/>
<writer name="more blah2"/>
</book>
</catalog>
明らかに、これは問題の単純化されたバージョンです。私がやりたいのは、これを次のようなものに変換することです:-
<catalog xmlns="format_new">
<book>
<title>blah</title>
<author>more blah</author>
</book>
<book>
<title>blah2</title>
<author>more blah2</author>
</book>
</catalog>
私が今持っているスタイルシートはこのようなものです:-
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:orig="format_old"
xmlns="format_new"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="//orig:book">
<xsl:element name="title">
<xsl:value-of select="./orig:description/@title" />
</xsl:element>
<xsl:element name="author">
<xsl:value-of select="./orig:writer/@name" />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
これにより、次のような出力が得られます:-
<catalog xmlns="format_old">
<book xmlns="format_new">
<title>blah</title>
<author>more blah</author>
</book>
<book xmlns:orig="format_old" xmlns="format_new">
<title>blah2</title>
</author>more blah2</author>
</book>
</catalog>
このスタイルシートには2つの問題があります:-
1。)(主要な問題)ルート要素のデフォルトの名前空間を変更するのではなく、ルート要素がコピーされます。したがって、基本的に、カタログ要素はまだ名前空間format_oldにあります。
2。)(マイナーな問題)これにより、要素が次のように変換されます:-
<book xmlns:orig="format_old" xmlns="format_new">
...
</book>
ルート要素から名前空間を取得する代わりに、
<book>
...
</book>
ここで何が欠けていますか?Xalan-Cを使用しています。