其他分享
首页 > 其他分享> > Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included

Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included

作者:互联网

报错堆栈:

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);

标签:10,code,http,CTRL,Illegal,backslash,MAPPER,报错
来源: https://www.cnblogs.com/stilldream/p/14865986.html