jdom中使用文件作为输入源,构造Document对象的问题

 jdom中使用SAXBuilder来构造Document对象时,如果输入源是xml文件,
那么在<?xml version="1.0" encoding="UTF-8"?>这个申明前面不能有空格,回车等,否则在加载Document对象时会报错

 

 

Caused by: org.xml.sax.SAXParseException: The processing instruction target matching "[xX][mM][lL]" is not allowed.
 at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1183)
 at org.jdom.input.SAXBuilder.build(SAXBuilder.java:453)

你可能感兴趣的:(jdom中使用文件作为输入源,构造Document对象的问题)