我正在尝试application/json使用 Spring RestTemplate返回一个带有 content-type 的 json String 的服务。
响应如下所示:
============================response begin==========================================
response: 200 OK
Headers
Content-Length : 108
Content-Type : application/json; charset=utf-8
Response Body : "a string with double quotes, JSON valid"
=======================response end=================================================
现在,当我使用:
String result = template.postForObject("http://...", request, String.class)
结果总是包含"\"a string with double quotes, Json valid\"",而我想接收它转义,"a string with double quotes, Json valid"。
我也想收到这个答案而不必解析它。
对我来说,这似乎是一个微不足道的问题,但我还没有在网上找到任何 SO 问题或其他资源。
相关分类