对方使用http给我发了一个JSON对象,这个JSON对象里有一个车牌号是使用GBK编码的, 我怎么在spring的controller层进行接收并转换成utf-8java代码示例
时间: 2023-06-01 20:05:36 浏览: 97
SpringMVC中controller接收json数据的方法
5星 · 资源好评率100%
@RequestMapping("/somePath")
public String processJsonRequest(@RequestBody String requestBody) {
JSONObject obj = new JSONObject(requestBody);
String carNumber = obj.getString("carNumber");
try {
carNumber = new String(carNumber.getBytes("GBK"), "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
// process the rest of the request
return "success";
}
阅读全文