XSLT 为 Apache FOP 生成动态行和列 [英] XSLT Generate Dynamic Rows and Columns for Apache FOP

查看:26
本文介绍了XSLT 为 Apache FOP 生成动态行和列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

对于下面的xml文件,我需要生成一个xsl-fo文件来转换成pdf.

For the following xml file, i need to generate an xsl-fo file to be converted into pdf.

我是样式表的新手,正在努力创建动态表.请帮忙.

I am new to style sheets and struggling to create dynamic table. Please help.

此外,每列的宽度因列而异.我如何将其包含在代码中?

Also, the width for each column varies,based on the column.How would i include this into the code?

列标题和列值在 xml 文件中动态填充.下面是一个示例.

The Column Headers and Column Values are dynamically populated in the xml file. Below is a sample.

有人可以帮忙生成 xsl-fo 或 xslt 代码吗?

Can anybody please help in generating xsl-fo or xslt code?

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ReportData>

    <ColumnHeaders>
       <ColumnHeader>
           <Name>Col-Header1</Name>
           <Width>5</Length>
       </ColumnHeader>
       <ColumnHeader>
           <Name>Col-Header2</Name>
           <Width>10</Length>
       </ColumnHeader>
       <ColumnHeader>
           <Name>Col-Header3</Name>
           <Width>8</Length>
        </ColumnHeader>
    </ColumnHeaders>

<Rows>
       <Row>
          <Column>Row1-Col1</Column>
          <Column>Row1-Col2</Column>
          <Column>Row1-Col3</Column>              
       </Row>
       <Row>
          <Column>Row2-Col1</Column>
          <Column>Row2-Col2</Column>
          <Column>Row2-Col3</Column>
       </Row>
    </Rows>
</ReportData>

推荐答案

这应该会让你开始.我使用 cm 作为列宽,页面为 11" x 8.5"(横向),因此表格适合页面.这对您来说应该很容易改变.

This should get you started. I used cm for the column width and the page is 11" x 8.5" (landscape) so the table would fit on the page. This should be easy for you to change.

XML Input(固定为格式良好)

<ReportData>

    <ColumnHeaders>
        <ColumnHeader>
            <Name>Col-Header1</Name>
            <Width>5</Width>
        </ColumnHeader>
        <ColumnHeader>
            <Name>Col-Header2</Name>
            <Width>10</Width>
        </ColumnHeader>
        <ColumnHeader>
            <Name>Col-Header3</Name>
            <Width>8</Width>
        </ColumnHeader>
    </ColumnHeaders>

    <Rows>
        <Row>
            <Column>Row1-Col1</Column>
            <Column>Row1-Col2</Column>
            <Column>Row1-Col3</Column>              
        </Row>
        <Row>
            <Column>Row2-Col1</Column>
            <Column>Row2-Col2</Column>
            <Column>Row2-Col3</Column>
        </Row>
    </Rows>
</ReportData>

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 indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="/">
        <fo:root>
            <fo:layout-master-set>
                <fo:simple-page-master master-name="my-page" page-height="8.5in" page-width="11in">
                    <fo:region-body margin="1in" margin-top="1.5in" margin-bottom="1.5in"/>
                </fo:simple-page-master>
            </fo:layout-master-set>
            <fo:page-sequence master-reference="my-page">
                <fo:flow flow-name="xsl-region-body">
                    <xsl:apply-templates/>
                </fo:flow>
            </fo:page-sequence>
        </fo:root>
    </xsl:template>

    <xsl:template match="ReportData">
        <fo:table>
            <fo:table-header>
                <fo:table-row>
                    <xsl:apply-templates select="ColumnHeaders/ColumnHeader"/>                  
                </fo:table-row>
            </fo:table-header>
            <fo:table-body>
                <xsl:apply-templates select="Rows/Row"/>
            </fo:table-body>
        </fo:table>
    </xsl:template>

    <xsl:template match="ColumnHeader">
        <fo:table-cell width="{Width}cm" border="solid black 1px" padding="2px" font-weight="bold" text-align="center">
            <fo:block><xsl:value-of select="Name"/></fo:block>
        </fo:table-cell>
    </xsl:template>

    <xsl:template match="Row">
        <fo:table-row>
            <xsl:apply-templates/>
        </fo:table-row>
    </xsl:template>

    <xsl:template match="Column">
        <fo:table-cell border="solid black 1px" padding="2px">
            <fo:block><xsl:value-of select="."/></fo:block>
        </fo:table-cell>
    </xsl:template>     

</xsl:stylesheet>

XSL-FO 输出

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
   <fo:layout-master-set>
      <fo:simple-page-master master-name="my-page" page-height="8.5in" page-width="11in">
         <fo:region-body margin="1in" margin-top="1.5in" margin-bottom="1.5in"/>
      </fo:simple-page-master>
   </fo:layout-master-set>
   <fo:page-sequence master-reference="my-page">
      <fo:flow flow-name="xsl-region-body">
         <fo:table>
            <fo:table-header>
               <fo:table-row>
                  <fo:table-cell width="5cm"
                                 border="solid black 1px"
                                 padding="2px"
                                 font-weight="bold"
                                 text-align="center">
                     <fo:block>Col-Header1</fo:block>
                  </fo:table-cell>
                  <fo:table-cell width="10cm"
                                 border="solid black 1px"
                                 padding="2px"
                                 font-weight="bold"
                                 text-align="center">
                     <fo:block>Col-Header2</fo:block>
                  </fo:table-cell>
                  <fo:table-cell width="8cm"
                                 border="solid black 1px"
                                 padding="2px"
                                 font-weight="bold"
                                 text-align="center">
                     <fo:block>Col-Header3</fo:block>
                  </fo:table-cell>
               </fo:table-row>
            </fo:table-header>
            <fo:table-body>
               <fo:table-row>
                  <fo:table-cell border="solid black 1px" padding="2px">
                     <fo:block>Row1-Col1</fo:block>
                  </fo:table-cell>
                  <fo:table-cell border="solid black 1px" padding="2px">
                     <fo:block>Row1-Col2</fo:block>
                  </fo:table-cell>
                  <fo:table-cell border="solid black 1px" padding="2px">
                     <fo:block>Row1-Col3</fo:block>
                  </fo:table-cell>
               </fo:table-row>
               <fo:table-row>
                  <fo:table-cell border="solid black 1px" padding="2px">
                     <fo:block>Row2-Col1</fo:block>
                  </fo:table-cell>
                  <fo:table-cell border="solid black 1px" padding="2px">
                     <fo:block>Row2-Col2</fo:block>
                  </fo:table-cell>
                  <fo:table-cell border="solid black 1px" padding="2px">
                     <fo:block>Row2-Col3</fo:block>
                  </fo:table-cell>
               </fo:table-row>
            </fo:table-body>
         </fo:table>
      </fo:flow>
   </fo:page-sequence>
</fo:root>

PDF 输出

这篇关于XSLT 为 Apache FOP 生成动态行和列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆