0
Fopを使用してPDFファイルを生成していますが、xsl-foオブジェクトを変換するxmlおよびxslソースを持っていますが、この上で私を助けて...Fopでxsl-foを使用してXML文字列からPDFを生成できません
これは文字列としての私のXML応答です:
<enqResponse>…<cols><c>ID</c><c>DESCRIPTION</c></cols>….<r><c><cap>1111</cap><i>4</i></c><c><cap>Banks</cap></c></r>… </enqResponse>
そして、これは私のXSLTファイルです:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:java="http://xml.apache.org/xslt/java" exclude-result-prefixes="java">
<xsl:output method="xml" version="1.0" omit-xml-declaration="no" indent="yes"/>
<xsl:template match="enqResponse">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:fox="http://xml.apache.org/fop/extensions">
<fo:layout-master-set>
<fo:simple-page-master master-name="my-page" page-width="50in" page-height="80in">
<fo:region-body margin-top="1in" margin-bottom="1in" />
<fo:region-before extent="2in"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="my-page">
<fo:static-content flow-name="xsl-region-before">
<fo:block font-size="12pt" font-weight="bold" text-align="center"><xsl:value-of select="title"/></fo:block>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block><xsl:apply-templates select="cols"/></fo:block>
<fo:block><xsl:apply-templates select="r"/></fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
<xsl:template match="cols">
<fo:table table-layout="fixed" width="100%">
<!--<fo:table-column column-width="2in"/>
<fo:table-column column-width="4in"/>
--><fo:table-body>
<fo:table-row>
<xsl:for-each select="c">
<fo:table-cell>
<fo:block><xsl:value-of select="."/></fo:block>
</fo:table-cell>
</xsl:for-each>
</fo:table-row>
</fo:table-body>
</fo:table>
</xsl:template>
<xsl:template match="r">
<fo:table table-layout="fixed" width="100%">
<!--<fo:table-column column-width="12in"/>
<fo:table-column column-width="12in"/>
--><fo:table-body>
<fo:table-row>
<xsl:for-each select="c">
<fo:table-cell>
<fo:block><xsl:value-of select="cap"/></fo:block>
</fo:table-cell>
</xsl:for-each>
</fo:table-row>
</fo:table-body>
</fo:table>
</xsl:template>
</xsl:stylesheet>
私はPDFとしてXMLをダウンロードすると、それが生成します空のPDFファイルの親dlyはこれについてあなたの提案をし、私に何か間違っているxsltファイルを教えてください。
私は静的コンテンツとXSLTファイルを持っており、それが静的コンテンツでPDFとして適切に<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:java="http://xml.apache.org/xslt/java" exclude-result-prefixes="java">
<xsl:output method="xml" version="1.0" omit-xml-declaration="no" indent="yes"/>
<xsl:template match="enqResponse">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:fox="http://xml.apache.org/fop/extensions">
<fo:layout-master-set>
<fo:simple-page-master master-name="my-page">
<fo:region-body margin="2in"/>
<fo:region-before extent="1.0cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="my-page">
<fo:static-content flow-name="xsl-region-before" >
<fo:block font-size="12pt" text-align="center">Page-1/1</fo:block>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block space-after="1.0cm">Welcome</fo:block>
<fo:block>
<fo:table table-layout="fixed" width="100%">
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block>No</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>Name</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>Phone Number</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell>
<fo:block>Test1</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>Test2</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>Test3</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
</xsl:stylesheet>
をXSLTファイルを表示されているように生成するために、指定されたXML文字列から動的にデータを抽出するためのソリューションを提供してください
PDFファイル...........
使用しているXSL-FOプロセッサのバージョンと、実行時のエラー出力は何ですか? – Woody
@Woody - プロセッサはFOPです。それはタイトルの最初の文章で言及されています。 –
申し訳ありません - 間違いですが、いずれのバージョンでも、どのバージョンのFOPプロセッサが使用されているのかわかりませんでした。出力と処理がバージョン0.2/0.9xと1.0の間で大幅に変化するので、それは関連性があります。 – Woody