admin
2021-01-25 d182390205a9828bd1091b06fa712e028004c687
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.newvideo.util;
 
import java.util.List;
 
import javax.persistence.Entity;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
@Entity
public class JsonUtil {
    public static String loadFalseJson(String err) {
        JSONObject root = new JSONObject();
        root.put("IsPost", false + "");
        root.put("Data", "");
        root.put("Error", err);
        LogUtil.i(root.toString());
        String st = DESUtil.encode(root.toString());
        // LogUtil.i(st);
        return st;
    }
 
    public static String loadTrueJson(String data) {
        JSONObject root = new JSONObject();
        root.put("IsPost", true + "");
        root.put("Data", data);
        root.put("Error", "");
        System.out.print(root.toString());
        String st = DESUtil.encode(root.toString());
        // LogUtil.i(st);
        return st;
    }
    
    
    
 
    public static String loadTrueJsonNoencript(String data) {
        JSONObject root = new JSONObject();
        root.put("IsPost", true + "");
        root.put("Data", data);
        root.put("Error", "");
        System.out.print(root.toString());
        // LogUtil.i(st);
        return root.toString();
    }
 
    public static String loadFalseJsonNoencript(String data) {
        JSONObject root = new JSONObject();
        root.put("IsPost", false + "");
        root.put("Error", data);
        // System.out.print(root.toString());
        // LogUtil.i(st);
        return root.toString();
    }
 
    public static String loadTrueJson(String data, String extra) {
        JSONObject root = new JSONObject();
        root.put("IsPost", true + "");
        root.put("Data", data);
        root.put("Extra", extra);
        root.put("Error", "");
        // System.out.print(root.toString());
        String st = DESUtil.encode(root.toString());
        // LogUtil.i(st);
        return st;
    }
 
    
    public static String loadTrueJson(String data, String extra1, String extra2) {
        JSONObject root = new JSONObject();
        root.put("IsPost", true + "");
        root.put("Data", data);
        root.put("Extra", extra1);
        root.put("Extra1", extra2);
        root.put("Error", "");
        // System.out.print(root.toString());
        String st = DESUtil.encode(root.toString());
        // LogUtil.i(st);
        return st;
    }
 
    public static String loadTrueJsonWithNoEncry(String data, String extra1, String extra2) {
        JSONObject root = new JSONObject();
        root.put("IsPost", true + "");
        root.put("Data", data);
        root.put("Extra", extra1);
        root.put("Extra1", extra2);
        root.put("Error", "");
        // System.out.print(root.toString());
        String st = root.toString();
        // LogUtil.i(st);
        return st;
    }
 
    public static String loadListJson(int count, List<Object> list) {
        JSONObject data = new JSONObject();
        JSONArray array = new JSONArray();
        if (list != null) {
            for (int i = 0; i < list.size(); i++) {
                array.add(StringUtil.outPutResultJson(list.get(i)));
            }
        }
        data.put("data", array);
        data.put("count", count);
        return JsonUtil.loadTrueJson(data.toString());
    }
 
    public static String loadAdminTrueJson(Object data) {
        JSONObject json = new JSONObject();
        json.put("code", 0);
        json.put("data", data);
        return json.toString();
    }
 
    public static String loadAdminFailJson(String data) {
        JSONObject json = new JSONObject();
        json.put("code", 1);
        json.put("msg", data);
        return json.toString();
    }
 
}