赞
踩
报错JsonParseException : Illegal unquoted character ((CTRL-CHAR, code 10)的解决方法
我调用第三方接口获取返回的JSON数据时报上面的错误。原因是对方接口响应的JSON中包含特殊字符,比如\n。当我们对这个JSON进行解析时就会报错JsonParseException : Illegal unquoted character ((CTRL-CHAR, code 10)。
在解析JSON前设置下面配置
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_CONTROL_CHARS, true);
OtherMessage otherMessage = objectMapper.readValue(text, OtherMessage.class);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。