-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAEJsonUtils.java
More file actions
314 lines (249 loc) · 6.81 KB
/
AEJsonUtils.java
File metadata and controls
314 lines (249 loc) · 6.81 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
package com.realmo.utils;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
/**
* JsonUtils 用于json的解析和数据提取
*
* 将字符串转换成JSONObject格式 从JSONObject中读取和json字符串中读取各种数据类型�?
* 整型(integer),浮点型(double), 布尔型(boolean),字符串(string),
* 数组(JSONArray),字典(JSONObject�?
*
*/
public class AEJsonUtils {
public static final int NULLJSONLEN = 2;
/**
* 将json字符串转换成JSONObject格式
*
* @return JSONObject
*/
static public JSONObject getJsonFromString(String data) {
JSONObject jsonObject = null;
if (null != data && !"".equals(data) && data.length() > NULLJSONLEN) {
try {
jsonObject = new JSONObject(data);
} catch (JSONException e) {
// key not found
System.out.println("返回值不是json");
}
}
return jsonObject;
}
/**
* 根据key从json中获取相应的String
*
* @param data
* json数据�?
* @param key
* 键字
*
* @return String
*/
static public String getString(String data, String key) {
// 将字符串解析成JSONObject
JSONObject jsonObject = getJsonFromString(data);
return getString(jsonObject,key);
}
static public String getString(JSONObject jsonObject, String key) {
String json = null;
// 将字符串解析成JSONObject
if (jsonObject != null) { // 判断jsonObject是否为空
try {
json = jsonObject.getString(key).trim();
} catch (JSONException e) {
// TODO Auto-generated catch block
System.out.println("该key值解析成字符串有错误�?");
e.printStackTrace();
}
}
return json;
}
/**
* 根据key从json中获取相应的double 类型values
*
* @param data
* json数据�?
* @param key
* 要获取的key关键�?
*
* @return double
*/
static public double getDouble(String data, String key) {
// 将字符串解析成JSONObject
JSONObject jsonObject = getJsonFromString(data);
return getDouble(jsonObject,key);
}
static public double getDouble(JSONObject jsonObject, String key) {
double json = 0.0f;
// 将字符串解析成JSONObject
if (jsonObject != null) { // 判断jsonObject是否为空
try {
json = jsonObject.getDouble(key);
} catch (JSONException e) {
// TODO Auto-generated catch block
System.out.println("该key值解析成double有错误�??");
e.printStackTrace();
}
}
return json;
}
/**
* 根据key从json中获取相应的int 类型values
*
* @param data
* json数据�?
* @param key
* 要获取的key关键�?
*
* @return int
*/
static public int getInt(String data, String key) {
// 将字符串解析成JSONObject
JSONObject jsonObject = getJsonFromString(data);
return getInt(jsonObject,key);
}
static public int getInt(JSONObject jsonObject, String key) {
int json = 0;
// 将字符串解析成JSONObject
if (jsonObject != null) { // 判断jsonObject是否为空
try {
json = jsonObject.getInt(key);
} catch (JSONException e) {
// TODO Auto-generated catch block
System.out.println("该key值解析成int有错误�??");
e.printStackTrace();
}
}
return json;
}
/**
* 根据key从json中获取相应的Boolean 类型values
*
* @param data
* json数据�?
* @param key
* 要获取的key关键�?
*
* @return Boolean
*/
static public boolean getBoolean(String data, String key) {
// 将字符串解析成JSONObject
JSONObject jsonObject = getJsonFromString(data);
return getBoolean(jsonObject,key);
}
static public boolean getBoolean(JSONObject jsonObject, String key) {
boolean json = false;
// 将字符串解析成JSONObject
if (jsonObject != null) { // 判断jsonObject是否为空
try {
json = jsonObject.getBoolean(key);
} catch (JSONException e) {
// TODO Auto-generated catch block
System.out.println("该key值解析成bool有错误�??");
e.printStackTrace();
}
}
return json;
}
/**
* 根据key从json中获取相应的JsonArray
*
* @param data
* json数据�?
* @param key
* 要获取的key关键�?
*
* @return JsonArray
*/
static public JSONArray getJsonArray(String data, String key) {
// 将字符串解析成JSONObject
JSONObject jsonObject = getJsonFromString(data);
return getJsonArray(jsonObject , key);
}
static public JSONArray getJsonArray(JSONObject jsonObject, String key){
JSONArray json = null;
if (jsonObject != null) { // 判断jsonObject是否为空
try {
json = jsonObject.getJSONArray(key);
} catch (JSONException e) {
// TODO Auto-generated catch block
System.out.println("该key值解析成array有错误??");
e.printStackTrace();
}
}
return json;
}
/**
* 根据key从json中获取相应的Object 类型values
*
* @param data
* json数据�?
* @param key
* 要获取的key关键�?
*
* @return Object
*/
static public JSONObject getJsonObject(String data, String key) {
// 将字符串解析成JSONObject
JSONObject jsonObject = getJsonFromString(data);
return getJsonObject( jsonObject, key);
}
static public JSONObject getJsonObject(JSONObject jsonObject, String key){
JSONObject json = null;
if (jsonObject != null) { // 判断jsonObject是否为空
try {
json = jsonObject.getJSONObject(key);
} catch (JSONException e) {
// TODO Auto-generated catch block
System.out.println("该key值解析成object有错误�??");
e.printStackTrace();
}
}
return json;
}
static public JSONObject getJSONObject(JSONArray jsonArray, int index) {
JSONObject object = null;
try {
object = jsonArray.getJSONObject(index);
} catch (JSONException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
return object;
}
static public String getString(JSONArray jsonArray, int index) {
String object = null;
try {
object = jsonArray.getString(index);
} catch (JSONException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
return object;
}
/**
*
* @param data
* @param key
* @return
*/
static public long getLong(String data, String key) {
// 将字符串解析成JSONObject
JSONObject jsonObject = getJsonFromString(data);
return getInt(jsonObject,key);
}
static public long getLong(JSONObject jsonObject, String key) {
long json = 0;
// 将字符串解析成JSONObject
if (jsonObject != null) { // 判断jsonObject是否为空
try {
json = jsonObject.getLong(key);
} catch (JSONException e) {
// TODO Auto-generated catch block
System.out.println("该key值解析成int有错误�??");
e.printStackTrace();
}
}
return json;
}
}