4

我正在使用 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( );
    }    
}   
}

我收到了这个错误

ERROR:  'Premature end of file.'
ERROR:  'com.sun.org.apache.xml.internal.utils.WrappedRuntimeException: Premature end of file.'

当我使用 XSL 文件手动转换 XML 时,我没有任何问题。但是,使用此 JAVA 文件我无法转换。

会有什么问题?

4

2 回答 2

6

您正在从同一个文件流式传输。尝试将其更改为以下内容:

transformer.transform(new StreamSource ("sample.xml"),  
        new StreamResult( new FileOutputStream("sample_result.xml"))
    );
于 2011-06-09T10:54:09.540 回答
0

完成您的 xml 文件提供任何标记,否则它将给出错误:文件过早结束。

<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>
<Customer>
<person>
    <Customer_ID>1</Customer_ID>
    <name>Nirav Modi</name>
</person>
<person>
    <Customer_ID>2</Customer_ID>
    <name>Nihar dave</name>
</person>
</Customer>

像这样再试一次。

于 2014-01-31T04:25:23.733 回答