gpt4 book ai didi

java - 文件过早结束错误

转载 作者:搜寻专家 更新时间:2023-11-01 02:15:50 26 4
gpt4 key购买 nike

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

关于java - 文件过早结束错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6291577/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com