我有这个格式良好的 XSLT 文件,可以将 XML 文件转换为稍微不同的 XML 文件。当我在纯 Java 中运行转换时,我的设置工作,但是当我尝试在 Google App Engine 上运行我的代码时,当我尝试加载 XSLT 文件时它崩溃,并显示以下错误消息:
ERROR: 'null'
FATAL ERROR: 'Could not compile stylesheet'
javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(Unknown Source)
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(Unknown Source)
爪哇:
(这里出了点问题)
InputStream is = context.getResourceAsStream("/xslt/add_spaces_and_ids.xslt");
if (is == null) {
throw new NullPointerException("File could not be found");
}
Source xsltSource = new StreamSource(is);
Transformer transformer = factory.newTransformer(xsltSource);
return transformer;
XSLT:
(应该没什么特别的)
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<xsl:output method="xml" indent="yes"/>
<xsl:template match="kop">
<xsl:variable name="kopText">
<xsl:value-of select="."/>
</xsl:variable>
<xsl:variable name="titelText">
<xsl:value-of select="titel"/>
</xsl:variable>
<!-- Add a space -->
<xsl:text> </xsl:text>
<xsl:copy>
<xsl:attribute name="id">
<xsl:value-of select="generate-id()" />
</xsl:attribute>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="node()">
<xsl:text> </xsl:text>
<xsl:copy>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
我怎样才能解决这个问题?