Java使用dom4j读取xml时报错:org.dom4j.DocumentException: Error on line 2 of document : Invalid byte 2 of 2-...

1.Java使用dom4j读取xml时报错:

  org.dom4j.DocumentException: Error on line 2 of document  : Invalid byte 2 of 2-byte UTF-8 sequence. Nested exception: Invalid byte 2 of 2-byte UTF-8 sequence

2.错误原因:

  接口返回的诗句编码是GBK,而我们代码中虽然指定了InputSource的编码,但是没有对解析xml时进行编码。

3.未修改的代码:

  SAXReader reader = new SAXReader(false);
  InputSource source = new InputSource(new ByteArrayInputStream(xml.getBytes()));
  source.setEncoding("UTF-8");
  Document doc = reader.read(source);

 4.改后的代码:

    SAXReader reader = new SAXReader(false);
    InputSource source = new InputSource(new ByteArrayInputStream(xml.getBytes("UTF-8")));
    source.setEncoding("UTF-8");
    Document doc = reader.read(source);

  增加了对xml字符串转字节的时候转码操作。

或者使用:

    SAXReader reader = new SAXReader(false);
    Document doc = saxReader.read(new ByteArrayInputStream(xml.getBytes("UTF-8")));

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值