Home > Database > Mysql Tutorial > xml解析错误:UTFDataFormatException: invalid byte 2 of 2

xml解析错误:UTFDataFormatException: invalid byte 2 of 2

WBOY
Release: 2016-06-07 15:37:22
Original
1425 people have browsed it

xml等配置文件行首的编码(?xml version=1.0 encoding=gb2312?)不能去除,会导致xml解析错误. Caused by: java.io.UTFDataFormatException: invalid byte 2 of 2-byte UTF-8 sequence (0xfd) at org.apache.xerces.impl.io.UTF8Reader.invalidByte(UTF8Reader.

xml等配置文件行首的编码()不能去除,会导致xml解析错误.
Caused by: java.io.UTFDataFormatException: invalid byte 2 of 2-byte UTF-8 sequence (0xfd)
        at org.apache.xerces.impl.io.UTF8Reader.invalidByte(UTF8Reader.java:678)
        at org.apache.xerces.impl.io.UTF8Reader.read(UTF8Reader.java:355)
        at org.apache.xerces.impl.XMLEntityManager$EntityScanner.load(XMLEntityManager.java:3186)
        at org.apache.xerces.impl.XMLEntityManager$EntityScanner.scanData(XMLEntityManager.java:2625)

        at org.apache.xerces.impl.XMLScanner.scanComment(XMLScanner.java:657)


启动脚本加上-Xbootclasspath即可使用循环获取jar:

for jar in ${WORK_HOME}/lib/*.jar; do
  LIBPATH="$LIBPATH:$jar"
done
CLASS_PATH=${WORK_HOME}/config:$LIBPATH

nohup java -Dtarget=$PNAME  -Duser.home=$USER_HOME -Xbootclasspath/p:${LIB}/xercesImpl.jar:${LIB}/xercesSamples.jar
:${LIB}/xmlParserAPIs.jar
-cp ${CLASS_PATH} XXXMain >> ${WORK_HOME}/log/main.log`date +%m%d` 2>&1 &

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template