Java中 List 和 JSON字符串之间的相互转换
List 转 JSON 字符串
List list = new ArrayList();
Map<String,String> map = new HashMap<>();
map.put("name","szy");
map.put("num",2);
list.add(map);
String inventoryResultStr = JSON.toJSON(list).toString();
前端js将后端的json字符串转对象文章来源:https://www.toymoban.com/news/detail-856098.html
var strJson1 ='${inventoryResultStr}';
var verficationPeopleMap=JSON.parse(strJson1);
JSON字符串转List文章来源地址https://www.toymoban.com/news/detail-856098.html
List inventoryResultList = JSONObject.parseArray(inventoryResult);
for(Integer i=0;i<inventoryResultList.size();i++){
JSONObject jsonObject = (JSONObject) inventoryResultList.get(i);
String name =jsonObject.getString("name");
}
到了这里,关于Java中 List 和 JSON字符串之间的相互转换的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!