从xsl:fo生成html xslt

时间:2015-03-30 20:01:17

标签: java xml xslt xsl-fo jaxp

我想将xsl:fo转换为xslt(用于HTML输出)。然后,我会应用xslt而不是xsl:fo来获取HTML输出而不是PDF。

怎么做呢?

我需要用于XML处理的API,或者需要将XML和XSL转换为另一个输出的JAXP。所以,我试着编写xslt模板:

<xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:fo="http://www.w3.org/1999/XSL/Format" exclude-result-prefixes="fo"
>

<xsl:template match="/xsl:template[@match='/root']/fo:root">
 <xsl:apply-templates select="fo:page-sequence"/>
</xsl:template>

 <xsl:template match="fo:page-sequence">

<xsl:for-each select="fo:flow[@flow-name='xsl-region-body']">
    <xsl:call-template name="xsl-regional-body">
            <xsl:with-param name="fontsize"><xsl:value-of select="@font-size"/></xsl:with-param>
        </xsl:call-template>
    </xsl:for-each>
</xsl:template>

<xsl:template name="xsl-regional-body">
    <xsl:param name="fontsize" />
    <body>      
        <xsl:if test="$fontsize"> <!-- costruisce <font size=""> -->
            <font>
            <xsl:attribute name="size">
                <xsl:value-of select="$fontsize"/>
            </xsl:attribute> 
            </font>
        </xsl:if>
        <xsl:for-each select="*/xsl:choose">
                <xsl:call-template name="xsl-choose"/>
        </xsl:for-each>
        <xsl:apply-templates select="."/>
    </body>
</xsl:template>

<xsl:template name="xsl-choose">
    <xsl:value-of select="."/>
</xsl:template>

我获得了类似

的内容
        <body><font size="10pt"/>
         ...
         text words..
        </body>

但它删除所有xsl:选择xsl:when和其他标签一样 我需要所有这些标签,因为我需要使用Jaxp在第二次传递中传递xml数据并生成html .. 我会得到

        <body><font size="10pt"/>
         <xsl:choose>
         <xsl:when test="ddx[@id='LET.....>
            <xsl::value-of select="ddx[@id='Lx']/r/PE...>
         </xsl:when>..
         </xsl:choose>
         text words..
        </body>

如何让XSL节点像文本节点一样?

2 个答案:

答案 0 :(得分:1)

如果要使用XSLT输出XSLT元素(即XSLT命名空间中的元素),则需要使用命名空间别名,如http://www.w3.org/TR/xslt#literal-result-element所示:

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

<xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/>

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

<xsl:template match="block">
  <axsl:template match="{.}">
     <fo:block><axsl:apply-templates/></fo:block>
  </axsl:template>
</xsl:template>

</xsl:stylesheet>

答案 1 :(得分:0)

我把xsl:代码放在&lt; ! CDATA [...]]&gt;

无论如何使用另一个名称空间