概述
The markup in the document following the root element must be well-formed.
XML是树状结构,一定要有个最外层的标签套住
Invalid byte 1 of 1-byte UTF-8 sequence 异常分析和解决
“org.dom4j.DocumentException: Invalid byte 1 of 1-byte UTF-8 sequence.”异常分析和解决:
分析:
该异常由下面的reader.read(file);语句抛出:
SAXReader reader = new SAXReader();
Document doc = reader.read(file);
产生这个异常的原因是:
所读的xml文件实际是GBK或者其他编码的,而xml内容中却用<?xml version="1.0" encoding="utf-8"?>指定编码为utf-8,所以就报异常了!
解决方法:
在解析XML前,将XML编码为UTF-8。
如:req.setCharacterEncoding("UTF-8");
如:new ByteArrayInputStream(submitDataParam.getBytes("UTF-8"))
Invalid byte 2 of 2-byte UTF-8 sequence 异常分析和解决
原因:
saxReader.read()读取的流中包含中文报错:
解决:
SAXReader saxReader =
new SAXReader();
byte[] bytes = requestMsg.getBytes();
InputStream in = new ByteArrayInputStream(bytes);
InputStreamReader strInStream = new InputStreamReader(in, "GBK"); //即在读流时指定编码
Document document = saxReader.read(strInStream);
byte[] bytes = requestMsg.getBytes();
InputStream in = new ByteArrayInputStream(bytes);
InputStreamReader strInStream = new InputStreamReader(in, "GBK"); //即在读流时指定编码
Document document = saxReader.read(strInStream);
最后
以上就是复杂汽车为你收集整理的解析XML各种异常的全部内容,希望文章能够帮你解决解析XML各种异常所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复