0

我有一个小问题。我必须使用 XSLT 从 XML 文件生成 HTML 文件。但是 HTML 文件名是由 XML 内容生成的。就我而言,我解决了以下问题:

public File GenerateHTML(File fileIn) {
    File xsltFile = new File(xsltfileString);
    File htmlFile = new File(System.getProperty("user.home") + File.separator + "result.html");
    File htmlFileFinal = null;
    Source xmlSource = new StreamSource(fileIn);
    Source xsltSource = new StreamSource(xsltFile);
    Result htmlResult = new StreamResult(htmlFile);
    TransformerFactory transFact = TransformerFactory.newInstance();
    Transformer trans;
    try {
        trans = transFact.newTransformer(xsltSource);
        trans.setParameter("filter_xml", filterXML);
        trans.setParameter("FileName", fileIn.getName());
        trans.transform(xmlSource, htmlResult);
        String outputFileName = (String)trans.getParameter("OutputFilename");
        htmlFileFinal = new File(System.getProperty("user.home") + File.separator + outputFileName + ".html");
        htmlFile.renameTo(htmlFileFinal);
    } catch (TransformerConfigurationException ex) {
        LOGGER.log(Level.FATAL, ex.getMessage(), ex);
    } catch (TransformerException ex) {
        LOGGER.log(Level.FATAL, ex.getMessage(), ex);
    }
    return htmlFileFinal;
}

在我的 XSLT 中我这样做:

<!-- general settings -->
<xsl:output method="html" omit-xml-declaration="yes" indent="yes" encoding="UTF-8" />

<xsl:variable name="filter" select="document($filter_xml)/Filtre/Bloc5" />

<!-- transformation body -->
<xsl:template match="*">
    <xsl:param name="OutputFilename" select="concat(cac:ContractDocumentReference/cbc:ID, '_', cbc:ID, '_', translate(cbc:IssueDate, '-', ''))" />
[...]

这个解决方案有效,但我问自己它是否经过优化,或者 XSLT 中是否有生成动态输出文件名的技巧?

4

2 回答 2

3

好吧,使用 XSLT 2.0,您当然可以根据 XML 输入值创建带有名称和 URL 的结果文档,例如

<xsl:template match="/">
  <xsl:result-document href="{root/foo/bar}.xml">
    <xsl:apply-templates/>
  </xsl:result-document>
</xsl:template>

您也可以从命名模板开始,例如

<xsl:template name="main">
  <xsl:variable name="doc1" select="doc('input.xml')"/>
  <xsl:result-document href="{$doc1/root/foo/bar}.xml">
    <xsl:apply-templates select="$doc1/node()"/>
  </xsl:result-document>
</xsl:template>

虽然我不确定这是否适合您使用的 JAXP 转换 API。

于 2012-09-26T10:02:54.187 回答
0

您也可以完全避免 for-each。...来自工作的 xslt。

<xsl:template match="EXTRACT-DATASETS/SUBSET">
...
...
<xsl:result-document href="{$filename-stub}.ctl">
...
...
</xsl:result-document>
</xsl:template>

这将为它找到的每个匹配生成一个文件。变量 filename-stub 在主模板中计算。不需要每个人......

于 2015-03-11T16:40:46.053 回答