读文件时控制台报如下错误,求解决!!!

发布于 2022-09-05 03:36:06 字数 520 浏览 15 评论 0

1.如下所示:控制台报错如图:

clipboard.png
2.后台代码为:

clipboard.png
3.xml文件如下:

clipboard.png
求大神解决,急,在线等,百度了很多方法都不管用,求大神解决!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

转身以后 2022-09-12 03:36:06

统一回答上述大神的问答,问题已经解决了,问题所在为读取文件时,不应将其设置静态变量;如图:

clipboard.png
应改为如下:

clipboard.png

旧城烟雨 2022-09-12 03:36:06

用你的代码试了下,没出现错误,如果dom4j出错,试试别的

DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
ClassPathResource resource = new ClassPathResource("reportType.xml");
Document doc = builder.parse(resource.getInputStream());
Element root = doc.getDocumentElement();
NodeList list = root.getChildNodes();
for (int i = 0, len = list.getLength(); i < len; i++) {

Node node = list.item(i);

}

顾冷 2022-09-12 03:36:06

我觉得是你xml文件的问题,错误翻译过来是:文件提前结束!xml文件可能没有结尾标签、开头标签错误等都可能遇到这种错误!你贴下你完整的xml文件

忘东忘西忘不掉你 2022-09-12 03:36:06
Problem: Input stream is opened and read bytes from it, passed the same to document builder to parse method. so it caused the exception saying premature end of file.
Solution: Pass fresh input stream which is opened and not read anything (bytes) before passing to parse method of DocumentBuilder object.
っ左 2022-09-12 03:36:06

编码问题?xml文件属性改为UTF-8试试呢

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文