2021
01-17
01-17
浅谈在Java中JSON的多种使用方式
1.常用的JSON转换 JSONObject转JSON字符串JSONObjectjson=newJSONObject();jsonObject.put("name","test");Stringstr=JSONObject.toJSONString(json);JSON字符串转JSONStringstr="{\"name\":\"test\"}";JSONObjectjson=JSONObject.parseObject(str);实体类转JSONTesttest=newTest();test.setName("test");StringtestStr=JSONObject.toJSONString(test);JSONObjectjson=JSONObject.parseObject(te...
继续阅读 >