我正在使用一些基本的XSLT。我想根据是否具有特定名称从某些XML中删除该元素。
编辑:这是我的“真实” XML代码:
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:Blocks="http://www.eclipse.org/papyrus/sysml/1.4/SysML/Blocks" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xsi:schemaLocation="http://www.eclipse.org/papyrus/sysml/1.4/SysML/Blocks http://www.eclipse.org/papyrus/sysml/1.4/SysML#//blocks">
<uml:Model xmi:id="_fPkgIHI3EemHwJRDr6_Icw" name="Sysml_project">
<packageImport xmi:type="uml:PackageImport" xmi:id="_fbVrSnI3EemHwJRDr6_Icw">
<importedPackage xmi:type="uml:Model" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#_0"/>
</packageImport>
<packageImport xmi:type="uml:PackageImport" xmi:id="_fcFSIHI3EemHwJRDr6_Icw">
<importedPackage xmi:type="uml:Package" href="pathmap://SysML14_LIBRARIES/SysML-Standard-Library.uml#SysML.package_packagedElement_Libraries"/>
<!-- Here I shortened the Code -->
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="_i8Uz0HI5EemHwJRDr6_Icw" memberEnd="_i8ek0nI5EemHwJRDr6_Icw _i8ek1XI5EemHwJRDr6_Icw">
<eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_i8ek0HI5EemHwJRDr6_Icw" source="org.eclipse.papyrus">
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_i8ek0XI5EemHwJRDr6_Icw" key="nature" value="UML_Nature"/>
</eAnnotations>
<ownedEnd xmi:type="uml:Property" xmi:id="_i8ek1XI5EemHwJRDr6_Icw" name="quelle" type="_ja4qAHI3EemHwJRDr6_Icw" association="_i8Uz0HI5EemHwJRDr6_Icw"/>
</packagedElement>
<!-- This packagedElement I won´t delete, because here the xmi:type is uml:Class -->
<packagedElement xmi:type="uml:Class" xmi:id="_ja4qAHI3EemHwJRDr6_Icw" name="Quelle">
<ownedAttribute xmi:type="uml:Property" xmi:id="_i8ek0nI5EemHwJRDr6_Icw" name="produktion" type="_xwtDkHI4EemHwJRDr6_Icw" association="_i8Uz0HI5EemHwJRDr6_Icw">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_rF6SoHJQEemHwJRDr6_Icw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_i8ek1HI5EemHwJRDr6_Icw" value="*"/>
</packagedElement>
</xmi:XMI>
如果xmi:type为“ uml:Association”,我想删除'packagedElement'元素,并且还要删除该元素,所以我将得到以下结果:
<root>
<packagedElement xmi:type="uml:class" name="test">
</packagedElement>
</root>
以下是我的Xsl代码:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!--identity template copies everything forward by default-->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<!--empty template suppresses this attribute-->
<xsl:template match="packagedElement[@xmi:type='uml:Association']"/>
</xsl:stylesheet>
答案 0 :(得分:2)
如果脚本引用了xmi
名称空间,则必须将其包含在脚本的主要元素中。
因此stylesheet
必须包含xmlns:xmi="..."
。
下面有一个示例脚本。
我还添加了xsl:output
来启用缩进,并将xsl:strip-space
切换到
过滤掉不必要的空间。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xmi="http://www.omg.org/spec/XMI/20131001">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="packagedElement[@xmi:type='uml:Association']"/>
<xsl:template match="node()|@*">
<xsl:copy><xsl:apply-templates select="node()|@*"/></xsl:copy>
</xsl:template>
</xsl:stylesheet>
我注意到您在对您添加的问题的评论中 xmlns:xmi =“ omg.org/XMI” 到 stylesheet 元素,但是 在您的XML源代码中有一个较长的版本,即 xmlns:xmi =“ http://www.omg.org/spec/XMI/20131001” 。
我暂时将 xmlns:xmi 更改为您的“缩短版”,并输出了 变得不同了。
因此,不仅要注意是否包含必需的名称空间, 以及他们是否引用相同地址。