suchen

Heim  >  Fragen und Antworten  >  Hauptteil

java – Beim Lesen einer Datei meldet die Konsole den folgenden Fehler, bitte beheben Sie ihn! ! !

1. Wie unten gezeigt: Der Konsolenfehler ist wie in der Abbildung dargestellt:


2. Der Hintergrundcode lautet:

Die Datei


3.xml lautet wie folgt:


Bitte bitte Gott, es zu lösen. Bitte warten Sie online. Viele Methoden auf Baidu funktionieren nicht. !

習慣沉默習慣沉默2743 Tage vor993

Antworte allen(4)Ich werde antworten

  • 伊谢尔伦

    伊谢尔伦2017-07-03 11:45:26

    用你的代码试了下,没出现错误,如果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);
    

    }

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-07-03 11:45:26

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

    Antwort
    0
  • 某草草

    某草草2017-07-03 11:45:26

    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.

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-07-03 11:45:26

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

    Antwort
    0
  • StornierenAntwort