java 字符串转json,json转对象等等...

Posted 帅就一个字却跟我一辈子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 字符串转json,json转对象等等...相关的知识,希望对你有一定的参考价值。

@RequestMapping(value = "updateInvestorApplyAccountNo", method = RequestMethod.POST)
@ResponseBody
public void updateInvestorApplyAccountNo(HttpServletRequest request,
HttpServletResponse response,
@RequestBody String requestBody) {
int num = 0;
String result = "";

//下面是把拿到的json字符串转成 json对象
JSONObject jsStr = JSONObject.parseObject(requestBody); //将字符串{“id”:1}
//int jsID = Integer.parseInt(jsStr.getString("id"));//获取id的值


/**
* json对象转换成java对象
*/
InvestorApplyModel stud = (InvestorApplyModel) JSONObject.toJavaObject(jsStr,InvestorApplyModel.class);

}

 

以上是关于java 字符串转json,json转对象等等...的主要内容,如果未能解决你的问题,请参考以下文章

json数组转java对象怎么转?

json数组转java对象怎么转

java中json字符串怎么转json对象

java字符串转json,json转对象

java中如何将对象转成json格式字符串

Java对象与JSON字符串的互转