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

Illegal unquoted character ((CTRL-CHAR, code 9)): has to be escaped using backslash to be included in string value

有时候会在json转换的时候出现这个错误,解决方法如下,
比如:

{
	"id":100,
	"name":"zhngsan",
	"note":{
		"aaa":11,
		"bbb":22
	}
}

类似这样的json请求,如果你的note字段是一个对象的话转jsonobject的时候是没问题
但是如果你的note字段是一个String类型的话,就会报错,转换异常,我们需要把note对应的value值转义一下

{
	"id":100,
	"name":"zhngsan",
	"note":"{
	\"aaa\": 11,
	\"bbb\": 22
	}"
}

转换成这样的格式,有时候还会报错,因为我们现在note的value不是json了,现在就是一个String字符串,要把他们中间的空格和换行都去掉,改成如下形式 就可以了

{
	"id":100,
	"name":"zhngsan",
	"note":"{\"aaa\": 11,\"bbb\": 22}"
}

你可能感兴趣的:(springboot)