我正在使用XSL將我的XML文件配置爲較小的XML。我的代碼片段是這樣:文件過早結束錯誤
public class MessageTransformer {
public static void main(String[] args) {
try {
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer (new StreamSource("sample.xsl"));
transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty(OutputKeys.METHOD, "xml");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
transformer.transform(new StreamSource ("sample.xml"),
new StreamResult(new FileOutputStream("sample.xml"))
);
}
catch (Exception e) {
e.printStackTrace();
}
}
}
當我使用XSL文件來轉換XML手動我不有任何問題,我得到這個錯誤
ERROR: 'Premature end of file.'
ERROR: 'com.sun.org.apache.xml.internal.utils.WrappedRuntimeException: Premature end of file.'
。但是,這個JAVA文件無法轉換。
會出現什麼問題?
我覺得讓StreamSource(你原來的xml)和StreamResult(xslt後的結果)指向同一個文件,可能會讓你陷入困境。 – Wivani 2011-06-09 10:53:58