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框打上分类名称的主要内容,如果未能解决你的问题,请参考以下文章

java web二进制流的图片如何用response返回给前台

如何将选定的微调器 id 传递给片段

vs 2010代码片段

vs 2010代码片段

java 片段工具栏名称

设置WordPress文章关键词自动获取,文章所属分类名称,描述自动获取文章内容,给文章的图片自动加上AlT标签