java解析和拼接json对象
2021-06-30 20:07
标签:turn static === 字符 string add 获取对象 vat world java解析和拼接json对象 标签:turn static === 字符 string add 获取对象 vat world 原文地址:https://www.cnblogs.com/hello-studio/p/9640585.html 1 /**
2
3 * @author: helloworlda
4
5 * @time:2012-1-18
6
7 * @descript:java拼接和解析json对象
8
9 * @result:get没测试出来,不知道效率怎么样。
10
11 */
12
13 package json;
14
15 import java.util.ArrayList;
16
17 import java.util.Iterator;
18
19 import java.util.List;
20
21 import net.sf.json.JSONArray;
22
23 import net.sf.json.JSONObject;
24
25 /**
26
27 *
28
29 */
30
31 public class TestJson {
32
33 public static void main(String[] args) {
34
35 System.out.println("---------------------java拼接json对象----------------------");
36
37 TestJson ss=new TestJson();
38
39 ss.viewMagazine();
40
41 System.out.println("---------------------java解析json对象----------------------");
42
43 strJsonObj();
44
45 }
46
47 /**
48
49 * 拼json对象
50
51 */
52
53 public String viewMagazine(){
54
55
56
57 Person person=new Person();
58
59 person.setBirth("1989-22-11");
60
61 person.setGrade("07java");
62
63 person.setName("happ");
64
65 person.setSex("boy");
66
67
68
69 //推荐的杂志的结果集
70
71 Person person1=new Person();
72
73 person1.setBirth("1989-22-11");
74
75 person1.setGrade("07java");
76
77 person1.setName("helloworlda");
78
79 person1.setSex("girl");
80
81
82
83 List
上一篇:Java线程池详解
下一篇:[转] ajax方法