zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package cn.autoform.bean;
 
import java.util.ArrayList;
import java.util.List;
 
import cn.autoform.util.tool.JSONTool;
import cn.autoform.util.tool.ObjectUtil;
import lombok.Data;
 
@Data
public class ProcessCon {
    
    
    private List<String> retired;
    
 
    public   void setRetired(String a){
        if(ObjectUtil.empty(a)){
            this.retired = new ArrayList<>();
        }else{
            this.retired = JSONTool.toList(JSONTool.toJson(a.split(",")),String.class);
        }
    }
 
    public static void main(String[] args) {
        ProcessCon a = new ProcessCon();
        a.setRetired("[1]:10,[2]:20");
 
        a.getRetired().add("[3]:20");
        String c = a.getRetired().toString();
        String b = c.substring(1, c.length()-1);
        System.out.println(b);
        
    }
    public String getLog(){
        String s = this.getRetired().toString();
        return s.substring(1, s.length()-1);
    }
}