xml:Invalid byte 2 of 2-byte UTF-8 sequence
xml解析错误:Invalid byte 2 of 2-byte UTF-8 sequence
在做接口解析时候出现的错误:Invalid byte 2 of 2-byte UTF-8 sequence. Nested exception: Invalid byte 2 of 2-byte UTF-8 sequence.
非常明显是在读取XML文件时候出现的编码问题。
在測试过程中发现。主要原因是xml文件里声明的编码与xml文件本身保存时的编码不一致。
如今解决的办法就有几个,主要说我測试过的两个方。
假设你是直接以文件的形式读取 能够更改XML文件里的 UTF-8编码 改为 GBK或GB2312 .
另一种可能是 你直接以URL 通过网络地址获取InputStream流形式读取 在转换成Document对象。这样的方法的解决的方法是先down 下来保存在本地。实现比較简单 用个OutputStream流写到你想保存的文件夹就可以。再解析down下来的文件 当中在 SAXReader saxReader = new SAXReader();
正常写法:
private ImpowerDeviceVo getResponseXml(String requestUrl, String requestXml) throws Exception
{
if (StringUtils.isEmpty(requestUrl))
{
String message = "config-WebPortal.xml配置文件未配置,获取接口连接为空!";
logger.debug(message);
logger.error(message);
}
URL httpurl = new URL(requestUrl);
HttpURLConnection httpConn = (HttpURLConnection) httpurl.openConnection();
httpConn.setConnectTimeout(ImpowerXmlNodeName.connectTimeout);
httpConn.setReadTimeout(ImpowerXmlNodeName.readTimeout);
httpConn.setRequestMethod(ImpowerXmlNodeName.requestMethod);
httpConn.setDoInput(true);
// 将doOutput标志设置为true,指示应用程序要将数据写入URL连接。
httpConn.setDoOutput(true);
OutputStream out = httpConn.getOutputStream();
logger.debug("requestXml:" + requestXml);
// 将參数写入URL接口连接
out.write(requestXml.getBytes("utf-8"));
SAXBuilder sax = new SAXBuilder();
Document doc = sax.build(httpConn.getInputStream());
// 获取到信息
ImpowerDeviceVo impowerDeviceVo = this.getImpowerDeviceVoByDocument(doc);
httpConn.disconnect();
out.close();
return impowerDeviceVo;
}
改动方法例如以下:
造一个暂时文件保存所定的编码报文,然后读取,读取解析后关闭流,再删除文件,否则会报文件读取多误 read error
private ImpowerDeviceVo getResponseXml(String requestUrl, String requestXml) throws Exception
{
if (StringUtils.isEmpty(requestUrl))
{
String message = "config-WebPortal.xml配置文件未配置,获取接口连接为空!";
logger.debug(message);
logger.error(message);
}
URL httpurl = new URL(requestUrl);
HttpURLConnection httpConn = (HttpURLConnection) httpurl.openConnection();
httpConn.setConnectTimeout(ImpowerXmlNodeName.connectTimeout);
httpConn.setReadTimeout(ImpowerXmlNodeName.readTimeout);
httpConn.setRequestMethod(ImpowerXmlNodeName.requestMethod);
httpConn.setDoInput(true);
// 将doOutput标志设置为true。指示应用程序要将数据写入URL连接。
httpConn.setDoOutput(true);
OutputStream out = httpConn.getOutputStream();
logger.debug("requestXml:" + requestXml);
// 将參数写入URL接口连接
out.write(requestXml.getBytes("utf-8"));
InputStream inputStream = httpConn.getInputStream();
String fileName = "tempxml.xml";
// 保存文件
File f = new File(fileName);
if (!f.exists())
{
f.createNewFile();
}
String xmlContent = readXmlStream(inputStream);
System.out.println("进入-----------"+xmlContent);
FileOutputStream fileOutputStream = new FileOutputStream(f);
fileOutputStream.write(xmlContent.getBytes("utf-8"));
fileOutputStream.close();
// 打开文件
f = new File(fileName);
FileInputStream fileInputStream = new FileInputStream(f);
SAXBuilder sax = new SAXBuilder();
// Document doc = sax.build(httpConn.getInputStream());
Document doc = sax.build(fileInputStream);
// 获取到信息
ImpowerDeviceVo impowerDeviceVo = this.getImpowerDeviceVoByDocument(doc);
httpConn.disconnect();
out.close();
fileInputStream.close();
f.delete();
return impowerDeviceVo;
}
xml:Invalid byte 2 of 2-byte UTF-8 sequence的更多相关文章
- CocoaPods pod install的时候报错:invalid byte sequence in UTF-8 (ArgumentError)解决办法
CocoaPods pod install的时候报错:invalid byte sequence in UTF-8 (ArgumentError)解决办法: 基本可以确定是Podfile中的内容编码有 ...
- Python3 使用requests请求,解码时出错:'utf8' codec can't decode byte 0x8b in position 1: invalid start byte
requests请求的响应内容能够通过几个属性获得: response.text 为解码之后的内容,解码会根据响应的HTTP Header中的Content-Type选择字符集.例如 "'C ...
- 使用 Visual Studio 2015 + Python3.6 + tensorflow 构建神经网络时报错:'utf-8' codec can't decode byte 0xcc in position 78: invalid continuation byte
使用 Visual Studio 2015 + Python3.6 + tensorflow 构建神经网络时报错:'utf-8' codec can't decode byte 0xcc in pos ...
- 当在命令行中执行virtualenv venv时报此错误:'utf-8' codec can't decode byte 0xd5 in position 38: invalid continuation by
1.windows中安装虚拟环境virtualenv时, 当在命令行中执行virtualenv venv时报此错误:'utf-8' codec can't decode byte 0xd5 in po ...
- python 读取文件时报错: UnicodeDecodeError: 'gbk' codec can't decode byte 0xa4 in position 127: illegal multibyte sequence
UnicodeDecodeError: 'gbk' codec can't decode byte 0xa4 in position 127: illegal multibyte sequence p ...
- Python读取CSV文件,报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0xa7 in position 727: illegal multibyte sequence
Python读取CSV文件,报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0xa7 in position 727: illegal mul ...
- python csv文件打开错误:_csv.Error: line contains NULL byte
当python读取文件出现_csv.Error: line contains NULL byte时, # -*- coding:utf-8 -*- import csv with open(r'E:\ ...
- [原创]java WEB学习笔记81:Hibernate学习之路--- 对象关系映射文件(.hbm.xml):hibernate-mapping 节点,class节点,id节点(主键生成策略),property节点,在hibernate 中 java类型 与sql类型之间的对应关系,Java 时间和日期类型的映射,Java 大对象类型 的 映射 (了解),映射组成关系
本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用 内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系. 本人互联网技术爱 ...
- 【转】java中byte, int的转换, byte String转换
原文网址:http://freewind886.blog.163.com/blog/static/661924642011810236100/ 最近在做些与编解码相关的事情,又遇到了byte和int的 ...
随机推荐
- Mybatis深入之事务管理
Mybatis之事务管理 简单介绍 Mybatis的事务管理分为两种JdbcTransaction.ManagedTransaction. 当中JdbcTransaction仅仅是对数据库连接Conn ...
- 基于struct2完整的用户登录
第一lib在导入struct2相应jar包 在web.xml组态struct2过滤器 <filter> <filter-name>struts2</filter-name ...
- Highcharts中文教程
http://www.hcharts.cn/docs/index.php?doc=start
- CocoStudio学习资源
CocoStudio安装包及实例project:http://www.cocoachina.com/bbs/read.php?tid=154886 CocoStudio视频教程系列:http://mo ...
- 华为OJ:查找字符的第一个字符串只出现一次
您可以使代码有点写得真好,不要直接写双循环,如果,是可能的写函数调用,非常高的可重用性. import java.util.Scanner; public class findOnlyOnceChar ...
- HDU 1518 Square 搜索
Problem Description Given a set of sticks of various lengths, is it possible to join them end-to-end ...
- StackExchange.Redis Client
StackExchange.Redis Client 这期我们来看StackExchange.Redis,这是redis 的.net客户端之一.Redis是一个开源的内存数据存储,可以用来做数据库,缓 ...
- MemCache分布式内存对象缓存系统
MemCache超详细解读 MemCache是一个自由.源码开放.高性能.分布式的分布式内存对象缓存系统,用于动态Web应用以减轻数据库的负载.它通过在内存中缓存数据和对象来减少读取数据库的次数,从而 ...
- Swift伟大的编程语言数据采集
Swift 2048 https://github.com/austinzheng/swift-2048 苹果官方Swift文档<The Swift Programming Language&g ...
- 【iOS】Swift扩展extension和协议protocol
加上几个关节前Playground摘要码进入github在,凝视写了非常多,主要是为了方便自己的未来可以Fanfankan. Swift语法的主要部分几乎相同的. 当然也有通用的.运算符重载.ARC. ...