首页 > Web开发 > 详细

Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string value\n at [Source: (org.apache.cxf.transport.http.AbstractHTTPDestination$1);

时间:2021-06-09 12:43:35      阅读:40      评论:0      收藏:0      [点我收藏+]

报错堆栈:

Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string value\n at [Source: (org.apache.cxf.transport.http.AbstractHTTPDestination$1); line: 3, column: 34

报错原因:

字符串中包含换行 ‘\n‘

解决办法:

1.在‘\n‘之前加转义符号‘\‘;

2.ObjectMapper MAPPER = new ObjectMapper();给MAPPER设置一个属性 MAPPER.configure(com.fasterxml.jackson.core.JsonParser.Feature.ALLOW_UNQUOTED_CONTROL_CHARS, true);

Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string value\n at [Source: (org.apache.cxf.transport.http.AbstractHTTPDestination$1);

原文:https://www.cnblogs.com/stilldream/p/14865986.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!