假设我有一个非常简单的 XML,带有一个空标签“B”:

<Root>
  <A>foo</A>
  <B></B>
  <C>bar</C>
</Root>

我目前正在使用 XSLT 删除一些标签,例如“C”:
<?xml version="1.0" ?>

<xsl:stylesheet version="2.0" xmlns="http://www.w3.org/1999/XSL/Transform" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml" indent="no" encoding="utf-8" omit-xml-declaration="yes" />

<xsl:template match="*">
    <xsl:copy>
        <xsl:copy-of select="@*" />
        <xsl:apply-templates />
    </xsl:copy>
</xsl:template>

<xsl:template match="C" />

</xsl:stylesheet>

到目前为止还可以,但问题是我最终得到了这样的输出:
<Root>
  <A>foo</A>
  <B/>
</Root>

当我真的想要:
<Root>
  <A>foo</A>
  <B></B>
</Root>

有没有办法防止“B”折叠?

谢谢。

最佳答案

好的,这里对我有用:

<xsl:output method="html">

关于java - 如何在 XSLT 之后保留空 XML 标记 - 防止将它们从 <B></B> 折叠到 <B/>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/980010/

10-13 05:30