文件过早结束错误



我正在使用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文件,我无法转换。

会有什么问题?

您正在从同一个文件进行流式传输。试着把它改成这样:

transformer.transform(new StreamSource ("sample.xml"),  
        new StreamResult( new FileOutputStream("sample_result.xml"))
    );

完成您的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>

像这样再试一次。

相关内容

  • 没有找到相关文章

最新更新