我想用Java中的XSLT轉換XML。爲此,我使用javax.xml.transform
包。但是,我得到例外javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet
。這是我正在使用的代碼:Java變壓器錯誤:無法編譯樣式表
public static String transform(String XML, String XSLTRule) throws TransformerException {
Source xmlInput = new StreamSource(XML);
Source xslInput = new StreamSource(XSLTRule);
TransformerFactory tFactory = TransformerFactory.newInstance();
Transformer transformer = tFactory.newTransformer(xslInput); // this is the line that throws the exception
Result result = new StreamResult();
transformer.transform(xmlInput, result);
return result.toString();
}
請注意,我標記了引發異常的行。
當我輸入方法中,XSLTRule
值是這樣的:
<xsl:stylesheet version='1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
xmlns:msxsl='urn:schemas-microsoft-com:xslt'
exclude-result-prefixes='msxsl'
xmlns:ns='http://www.ibm.com/wsla'>
<xsl:strip-space elements='*'/>
<xsl:output method='xml' indent='yes'/>
<xsl:template match='@* | node()'>
<xsl:copy>
<xsl:apply-templates select='@* | node()'/>
</xsl:copy>
</xsl:template>
<xsl:template match="/ns:SLA
/ns:ServiceDefinition
/ns:WSDLSOAPOperation
/ns:SLAParameter[@name='Performance']"/>
</xsl:stylesheet>
你抓到了什麼異常? – 2011-03-29 12:28:22
它是'javax.xml.transform.TransformerConfigurationException'。我編輯了我原來的帖子,現在在那裏。 – Ivan 2011-03-29 12:36:54
爲什麼你的最後一個模板是空的? – Stephan 2011-03-29 12:41:01