// SectionModel sm = JSON.parseObject(sectionsString, SectionModel.class);java
return JSONObject.toJSONString(sm );json
JSONObject.toJSONString(對象);//對象轉爲json字符串spa
JSONObject articleLocal = JSONObject.parseObject(testString);//先把字符串轉換爲json對象 ArticleModel art = JSONObject.toJavaObject(articleLocal, ArticleModel.class);//再把json對象轉爲java對象
json轉listcode
List<UserModel> users = InitdataBean.userModels;//獲取一個對象列表 String userjson = JSONObject.toJSONString(users);//列表轉json字符串 List<UserModel> userList = JSONObject.parseArray(userjson, UserModel.class);//字符串轉對象列表