gpt4 book ai didi

java - Apache FOP : Print contents of list from XML in PDF without knowing list size?

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

我有一个 XML,正在通过 Apache FOP 转换为 PDF,嵌入到 Java 程序和 XSLT 中。该 XML 包含多个项目列表;这些列表在 XML 中的格式如下:

<NameOfList>
<Listitem>
<ListItemAttributeOne/>
<ListItemAttributeTwo/>
</ListItem>
<ListItem>
<ListItemAttributeOne/>
<ListItemAttributeTwo/>
</ListItem>
<...more ListItems>
</NameOfList>

我事先不知道有多少个 ListItem,我需要将它们的信息打印在 PDF 文件中,如下所示:

(1) 列表项属性一:
列表项属性二:
(2)列表项属性一:
列表项属性二:
(...)
(n) 列表项属性一:
列表项属性二:

我通常是一名 Java 开发人员,所以我知道如何使用 Java 执行此操作:获取 ListItem 对象列表,将它们存储在自定义类型“ListItem”的 ArrayList 中,然后循环遍历 ArrayList 并打印出它们的关联项属性,每个新项目都会增加标签(1、2 等)。

是否有类似的方法可以使用 XSLT 2.0 来执行此操作?您能否将 XML 中的列表读入数组并在动态生成的列表中一次打印出一项?

最佳答案

这是一个 XSLT 1.0(您甚至不需要 XSLT 2.0 引入的功能),用于转换 XSL-FO 列表中的输入:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="/">
<fo:root>
<fo:layout-master-set>
<fo:simple-page-master master-name="simple" margin="0.5in">
<fo:region-body/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="simple">
<fo:flow flow-name="xsl-region-body">
<xsl:apply-templates/>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>

<xsl:template match="NameOfList">
<fo:list-block provisional-distance-between-starts="2cm" provisional-label-separation="2mm">
<xsl:apply-templates select="*"/>
</fo:list-block>
</xsl:template>

<xsl:template match="ListItem">
<fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>(<xsl:value-of select="position()"/>)</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<xsl:apply-templates/>
</fo:list-item-body>
</fo:list-item>
</xsl:template>

<xsl:template match="ListItemAttributeOne">
<fo:block>List Item Attribute One: <xsl:value-of select="."/></fo:block>
</xsl:template>

<xsl:template match="ListItemAttributeTwo">
<fo:block>List Item Attribute Two: <xsl:value-of select="."/></fo:block>
</xsl:template>
</xsl:stylesheet>

您可能需要根据您的特定需求(页面大小、边距、字体等)对其进行调整,但它应该为您提供一个总体思路。

关于java - Apache FOP : Print contents of list from XML in PDF without knowing list size?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29834641/

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