java 给json框打上分类名称
Posted yangly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 给json框打上分类名称相关的知识,希望对你有一定的参考价值。
public void import9(){ TagImgFilter filter = new TagImgFilter();//更改的集合 filter.setEq_orgId("c1fa7ba875fa4c9a899e2787eb79e802"); filter.setEq_setId("d5e8f01a2e6649cf877eacda8ceb6ff1"); filter.setEq_typeId("ff4dfd4ba7d949958b3d630a90fcca75"); filter.setNull_tagJson(false);// 是否要有标注的,true是没标注 List<TagImg> imgList = tagImgService.selectAll(filter); System.out.println(imgList.size()); int countadd = 0; for (TagImg tagimg : imgList) { countadd++; System.out.println(countadd); TagType tagType = tagTypeService.getById(tagimg.getTypeId()); String json=tagimg.getTagJson(); JSONArray array=JSONArray.parseArray(json); JSONArray arrayNew=new JSONArray(); if(array!=null && array.size()>0){ for(int i=0;i<array.size();i++){ JSONObject obj = array.getJSONObject(i); System.out.println(obj); obj.put("classname", tagType.getName()); System.out.println("-----------------"); System.out.println(obj); arrayNew.add(obj); } tagimg.setTagJson(arrayNew.toString()); tagImgService.save(tagimg); } } }
以上是关于java 给json框打上分类名称的主要内容,如果未能解决你的问题,请参考以下文章