xml 中不需要的元素

发布于 2024-11-30 22:56:46 字数 1513 浏览 2 评论 0原文

我就会得到以下 DTO

@XStreamAlias("outline")
public class OutlineItem implements java.io.Serializable {

    private static final long serialVersionUID = -2321669186524783800L;

    @XStreamAlias("text")
    @XStreamAsAttribute
    private String text;

    @XStreamAsAttribute
    @XStreamImplicit
    private List<OutlineItem> childItems;
}

一旦我这样做,

XStream stream = new XStream();
stream.processAnnotations(OutlineItem.class);
stream.toXML(outlineItem.getChildItems()); //This is a List of all the child items

作为我的输出文本

<List>
    <outline text="Test Section1">
        <outline text="Sub Section1 1">
        </outline>
        <outline text="Sub Section1 2">
        </outline>
    </outline>
    <outline text="Test Section 2">
        <outline text="Test Section2 1">
        </outline>
    </outline>
</List>

,而我希望输出为:

<outline text="Test Section1">
    <outline text="Sub Section1 1">
    </outline>
    <outline text="Sub Section1 2">
    </outline>
</outline>
<outline text="Test Section 2">
    <outline text="Test Section2 1">
    </outline>
</outline>

如何摆脱初始列表标签?非常感谢任何帮助。

PS>这是我几周前问过的问题的延伸返回

可以这完全可以通过 XSLT 来实现吗?

I have following DTO

@XStreamAlias("outline")
public class OutlineItem implements java.io.Serializable {

    private static final long serialVersionUID = -2321669186524783800L;

    @XStreamAlias("text")
    @XStreamAsAttribute
    private String text;

    @XStreamAsAttribute
    @XStreamImplicit
    private List<OutlineItem> childItems;
}

once i do

XStream stream = new XStream();
stream.processAnnotations(OutlineItem.class);
stream.toXML(outlineItem.getChildItems()); //This is a List of all the child items

i get this as my output text

<List>
    <outline text="Test Section1">
        <outline text="Sub Section1 1">
        </outline>
        <outline text="Sub Section1 2">
        </outline>
    </outline>
    <outline text="Test Section 2">
        <outline text="Test Section2 1">
        </outline>
    </outline>
</List>

whereas i want the output to be:

<outline text="Test Section1">
    <outline text="Sub Section1 1">
    </outline>
    <outline text="Sub Section1 2">
    </outline>
</outline>
<outline text="Test Section 2">
    <outline text="Test Section2 1">
    </outline>
</outline>

How do i get rid of the Initial List tag? any help is greatly appreciated.

PS> This is a extension of the question i had asked a couple of weeks back

Can this be achieved by XSLT at all?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网白 2024-12-07 22:56:46

XSLT 答案很直接:

  • 身份转换(给定输入样本,变体似乎足够了)
  • “取消复制”List 规则

[XSLT 1.0]

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

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

<xsl:template match="List">
  <xsl:apply-templates/>
</xsl:template>

</xsl:stylesheet>

The XSLT answer is immediate:

  • identity transformation (a variant seems enough given your input sample)
  • "uncopy" List rule

[XSLT 1.0]

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

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

<xsl:template match="List">
  <xsl:apply-templates/>
</xsl:template>

</xsl:stylesheet>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文