前面转载了json解析的技术:fastjson,今天说下另外一种技术。
下载地址
  1. 本次使用版本:http://sourceforge.net/projects/json-lib/files/json-lib/json-lib-1.1/
  2. 最新版本:http://sourceforge.net/projects/json-lib/files/json-lib/

使用net.sf.json需要导入的包

JSONObject

  1. package com.itlwc.test;
  2. import net.sf.json.JSONArray;
  3. import net.sf.json.JSONObject;
  4. public class Test {
  5. public static void main(String[] args) {
  6. // 创建JSONObject
  7. JSONObject jsonObject = new JSONObject();
  8. jsonObject.put("username", "lwc");
  9. jsonObject.put("password", "123");
  10. // 打印:1
  11. System.out.println(jsonObject);
  12. // 增加属性,打印:2
  13. jsonObject.element("sex", "男");
  14. System.out.println(jsonObject);
  15. // 根据key返回,打印:3
  16. System.out.println(jsonObject.get("sex"));
  17. // 判读输出对象的类型
  18. boolean isArray = jsonObject.isArray();
  19. boolean isEmpty = jsonObject.isEmpty();
  20. boolean isNullObject = jsonObject.isNullObject();
  21. // 打印:4
  22. System.out.println("是否数组:" + isArray + " 是否空:" + isEmpty + " 是否空对象:"
  23. + isNullObject);
  24. // 把JSONArray增加到JSONObject中
  25. JSONArray jsonArray = new JSONArray();
  26. jsonArray.add(0, "lwc");
  27. jsonArray.add(1, "nxj");
  28. // 开始增加
  29. jsonObject.element("student", jsonArray);
  30. // 打印:5
  31. System.out.println(jsonObject);
  32. }
  33. }
  34. /*
  35. 打印结果
  36. {"username":"lwc","password":"123"}
  37. {"username":"lwc","password":"123","sex":"男"}
  38. 是否为数组:false 是否为空:false 是否为空对象:false
  39. {"username":"lwc","password":"123","sex":"男","student":["lwc","nxj"]}
  40. */

JSONArray

  1. package com.itlwc.test;
  2. import net.sf.json.JSONArray;
  3. import net.sf.json.JSONObject;
  4. public class Test {
  5. public static void main(String[] args) {
  6. //创建JSONArray
  7. JSONArray jsonArray = new JSONArray();
  8. jsonArray.add(0, "lwc");
  9. jsonArray.add(1, "nxj");
  10. jsonArray.element("mxj");
  11. //打印:1
  12. System.out.println(jsonArray);
  13. //根据下标返回,打印:2
  14. System.out.println(jsonArray.get(0));
  15. //根据下标设置新值,打印:3
  16. jsonArray.set(0, "itlwc");
  17. System.out.println(jsonArray);
  18. //把JSONObject放入到JSONArray中
  19. JSONObject jsonObject = new JSONObject();
  20. jsonObject.put("username", "lwc");
  21. jsonObject.put("password", "123");
  22. //开始增加,打印:4
  23. jsonArray.add(jsonObject);
  24. System.out.println(jsonArray);
  25. //遍历,打印:5
  26. for(int i=0;i<jsonArray.size();i++){
  27. System.out.print(jsonArray.get(i)+"\t");
  28. }
  29. }
  30. }
  31. /*
  32. 打印结果
  33. ["lwc","nxj","mxj"]
  34. lwc
  35. ["itlwc","nxj","mxj"]
  36. ["itlwc","nxj","mxj",{"username":"lwc","password":"123"}]
  37. itlwc   nxj mxj {"username":"lwc","password":"123"}
  38. */

JavaBean与json字符串互转

  1. package com.itlwc.test;
  2. import net.sf.json.JSONObject;
  3. import com.itlwc.entity.Student;
  4. public class Test {
  5. public static void main(String[] args) {
  6. // JavaBean对象转json字符串
  7. Student stu1 = new Student("lwc", "111111");
  8. //这个方法是将对象转为json对象(不论是将json字符串还是java对象都是这个方法)
  9. JSONObject jsonObject = JSONObject.fromObject(stu1);
  10. System.out.println(jsonObject);
  11. // json字符串转JavaBean
  12. String jsondata = "{\"password\":\"111111\",\"username\":\"lwc\"}";
  13. JSONObject jsonObject1 = JSONObject.fromObject(jsondata);
  14. Student stu2 = (Student) JSONObject.toBean(jsonObject1, Student.class);
  15. System.out.println(stu2);
  16. }
  17. }
  18. /*
  19. 打印结果:
  20. {"password":"111111","username":"lwc"}
  21. 用户: lwc 密码:111111
  22. */

List与json字符串互转

  1. package com.itlwc.test;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import net.sf.json.JSONArray;
  5. import net.sf.json.JSONObject;
  6. import com.itlwc.entity.Student;
  7. public class Test {
  8. public static void main(String[] args) {
  9. // List转json字符串
  10. List list = new ArrayList();
  11. list.add(new Student("lwc", "111111"));
  12. list.add(new Student("nxj", "222222"));
  13. //将list集合转为json数组对象
  14. JSONArray jsonArray = JSONArray.fromObject(list);
  15. System.out.println(jsonArray);
  16. // json字符串转List
  17. List list1 = new ArrayList();
  18. String jsondata = "[{\"password\":\"111111\",\"username\":\"lwc\"},{\"password\":\"222222\",\"username\":\"nxj\"}]";
  19. JSONArray jsonArray1 = JSONArray.fromObject(jsondata);
  20. for (int i = 0; i < jsonArray1.size(); i++) {
  21. JSONObject jsonObject2 = jsonArray1.getJSONObject(i);
  22. Student stu2 = (Student) JSONObject.toBean(jsonObject2,
  23. Student.class);
  24. list1.add(stu2);
  25. }
  26. System.out.println(list1);
  27. }
  28. }
  29. /*
  30. 打印结果:
  31. [{"password":"111111","username":"lwc"},{"password":"222222","username":"nxj"}]
  32. [用户: lwc 密码:111111, 用户: nxj 密码:222222]
  33. */

Map与json字符串互转

  1. package com.itlwc.test;
  2. import java.util.HashMap;
  3. import java.util.Iterator;
  4. import java.util.Map;
  5. import java.util.Set;
  6. import net.sf.json.JSONObject;
  7. import com.itlwc.entity.Student;
  8. public class Test {
  9. public static void main(String[] args) {
  10. // Map转json字符串
  11. Map map = new HashMap();
  12. map.put("1", new Student("lwc", "111111"));
  13. map.put("2", new Student("nxj", "222222"));
  14. JSONObject jsonMap = JSONObject.fromObject(map);
  15. System.out.println(jsonMap);
  16. // json字符串转Map
  17. String jsondata = "{\"2\":{\"password\":\"222222\",\"username\":\"nxj\"},\"1\":{\"password\":\"111111\",\"username\":\"lwc\"}}";
  18. Map map1 = (Map) JSONObject.fromObject(jsondata);
  19. Set set = map1.keySet();
  20. Iterator ite = set.iterator();
  21. while (ite.hasNext()) {
  22. String key = (String) ite.next();
  23. JSONObject jsonObject = JSONObject.fromObject(map1.get(key));
  24. Student stu = (Student) JSONObject
  25. .toBean(jsonObject, Student.class);
  26. System.out.println(key + " " + stu);
  27. }
  28. }
  29. }
  30. /*
  31. 打印结果:
  32. {"2":{"password":"222222","username":"nxj"},"1":{"password":"111111","username":"lwc"}}
  33. 2 用户: nxj 密码:222222
  34. 1 用户: lwc 密码:111111
  35. */

JSONArray与List互转

  1. package com.itlwc.test;
  2. import java.util.ArrayList;
  3. import java.util.Iterator;
  4. import java.util.List;
  5. import net.sf.json.JSONArray;
  6. import net.sf.json.JsonConfig;
  7. import com.itlwc.entity.Student;
  8. public class Test {
  9. public static void main(String[] args) {
  10. //List转型JSONArray
  11. List<Student> list = new ArrayList<Student>();
  12. list.add(new Student("lwc", "111111"));
  13. list.add(new Student("nxj", "222222"));
  14. JSONArray jsonArray = JSONArray.fromObject(list);
  15. System.out.println(jsonArray.toString());
  16. //JSONArray转型List
  17. List<Student> list2 = JSONArray.toList(jsonArray, new Student(), new JsonConfig());
  18. Iterator<Student> ite =  list2.iterator();
  19. while(ite.hasNext()){
  20. Student stu =ite.next();
  21. System.out.println(stu);
  22. }
  23. }
  24. }
  25. /*
  26. 打印结果
  27. [{"password":"111111","username":"lwc"},{"password":"222222","username":"nxj"}]
  28. 用户: lwc 密码:111111
  29. 用户: nxj 密码:222222
  30. */

JSONArray与数组互转

  1. package com.itlwc.test;
  2. import net.sf.json.JSONArray;
  3. public class Test {
  4. public static void main(String[] args) {
  5. // Java数组转JSONArray
  6. boolean[] boolArray = new boolean[] { true, false, true };
  7. JSONArray jsonArray = JSONArray.fromObject(boolArray);
  8. System.out.println(jsonArray.toString());
  9. // JSONArray转Java数组
  10. Object obj[] = jsonArray.toArray();
  11. for (Object o : obj) {
  12. System.out.print(o + " ");
  13. }
  14. }
  15. }
  16. /*
  17. 打印结果 :
  18. [true,false,true]
  19. true false true
  20. */

XML与JSON互转

需要导入xom-1.1.jar

  1. package com.itlwc.test;
  2. import net.sf.json.JSON;
  3. import net.sf.json.JSONObject;
  4. import net.sf.json.xml.XMLSerializer;
  5. public class Test {
  6. public static void main(String[] args) throws Exception {
  7. // XML转JSON
  8. String xml = "<root>" + "<name type='type'>zhaipuhong</name>"
  9. + "<gender>male</gender>" + "<birthday>" + "<year>1970</year>"
  10. + "<month>12</month>" + "<day>17</day>" + "</birthday>"
  11. + "</root>";
  12. XMLSerializer xmlSerializer = new XMLSerializer();
  13. JSON json = xmlSerializer.read(xml);
  14. System.out.println(json.toString(2));
  15. // JSON转XML
  16. String jsondata = "{\"root\":{" + "\"name\":\"zhaipuhong\","
  17. + "\"gender\":\"male\"," + "\"birthday\":{"
  18. + "\"year\":\"1970\"," + "\"month\":\"12\"," + "\"day\":\"17\""
  19. + "}" + "}" + "}";
  20. JSONObject jsonObject = JSONObject.fromObject(jsondata);
  21. String xmlstr = new XMLSerializer().write(jsonObject);
  22. System.out.println(xmlstr);
  23. }
  24. }
  25. /*
  26. 打印结果:
  27. {
  28. "name": "zhaipuhong",
  29. "gender": "male",
  30. "birthday":   {
  31. "year": "1970",
  32. "month": "12",
  33. "day": "17"
  34. }
  35. }
  36. <?xml version="1.0" encoding="UTF-8"?>
  37. <o>
  38. <root class="object">
  39. <birthday class="object">
  40. <day type="string">17</day>
  41. <month type="string">12</month>
  42. <year type="string">1970</year>
  43. </birthday>
  44. <gender type="string">male</gender>
  45. <name type="string">zhaipuhong</name>
  46. </root>
  47. </o>
  48. */

解析json方式之net.sf.json的更多相关文章

  1. java解析JSON (使用net.sf.json)

    例如JSON字符串str如下: {     "data": [         {             "basic_title": "运筹帷幄因 ...

  2. JSON数据转换之net.sf.json包的使用

    转载 解析json之net.sf.json https://blog.csdn.net/itlwc/article/details/38442667 一.介绍 使用之前需要导入的jar包: json- ...

  3. json解析异常 - net.sf.json.JSONException: java.lang.reflect.InvocationTargetException

    注:在项目中, 我使用原生的ajax请求数据的时候, JSONObject没能帮我解析, 当却不给我报错, 我是在junit单元测试中测试的时候, 发现的.发现好多时候, 特别是通过ajax请求, 不 ...

  4. java中转换json方式(JSONArray,JSONObject),json解析

    package com.yunos.tv.video.resource.controller.web; import java.util.ArrayList; import java.util.Has ...

  5. Java中net.sf.json包关于JSON与对象互转的问题

    在Web开发过程中离不开数据的交互,这就需要规定交互数据的相关格式,以便数据在客户端与服务器之间进行传递.数据的格式通常有2种:1.xml:2.JSON.通常来说都是使用JSON来传递数据.本文正是介 ...

  6. Java中net.sf.json包关于JSON与对象互转的坑

    在Web开发过程中离不开数据的交互,这就需要规定交互数据的相关格式,以便数据在客户端与服务器之间进行传递.数据的格式通常有2种:1.xml:2.JSON.通常来说都是使用JSON来传递数据.本文正是介 ...

  7. net.sf.json.JSONObject 和org.json.JSONObject 的差别

    http://my.oschina.net/wangwu91/blog/340721 net.sf.json.JSONObject 和org.json.JSONObject  的差别. 一.创建jso ...

  8. net.sf.json.JSONException: There is a cycle in the hierarchy!的解决办法

    使用Hibernate manytoone属性关联主表的时候,如果使用JSONArray把pojo对象转换成json对象时,很容易出现循环的异常.解决的办法就是, 在转换json对象时忽略manyto ...

  9. net.sf.json 时间格式的转化

    后台代码 //后台代码 response.setCharacterEncoding("UTF-8"); JsonConfig jsonConfig = new JsonConfig ...

随机推荐

  1. (数据科学学习手札04)Python与R在自定义函数上的异同

    自编函数是几乎每一种编程语言的基础功能,有些时候我们需要解决的问题可能没有完全一致的包中的函数来进行解决,这个时候自编函数就成了一样利器,而Python与R在这方面也有着一定的差别,下面举例说明: P ...

  2. PHP.38-TP框架商城应用实例-后台14-商品管理-商品扩展分类的删除、修改

    商品分类删除 1.删除商品时,根据商品id删除扩展分类表数据 商品扩展分类修改 1.在控制器GoodsController.class.php/edit()中根据商品id取出对应的所有扩展分类 2.在 ...

  3. 2 socket UDP通信

    1 socket套接字  class 对象 In [1]: import socket In [2]: help(socket.socket) class socket(_socket.socket) ...

  4. Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. org/apache/hadoop/hbase/

    Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. org/apache/hadoop/hbase/ ...

  5. ubuntu设置ssh登陆

    转: 默认请况下,ubuntu是不允许远程登陆的.(因为服务没有开,可以这么理解.) 想要用ssh登陆的话,要在需要登陆的系统上启动服务.即,安装ssh的服务器端 $ sudo apt-get ins ...

  6. 【面试题】2018年最全Java面试通关秘籍第五套!

    [面试题]2018年最全Java面试通关秘籍第五套! 原创 2018-04-26 徐刘根 Java后端技术 第一套:<2018年最全Java面试通关秘籍第一套!> 第二套:<2018 ...

  7. ionic 向路由中的templateUrl(模板页)传值

    .state('product', { url: '/product/:id', templateUrl: function ($routeParams) { return '/Product/Ind ...

  8. tp5.0 模型查询数据的返回类型,分页

    一开始用painate()这个函数的时候,发现有的查询方式不能使用这个函数,由此了解到了模型查询和普通查询返回类型的不同 1.原生查询方法 Db::query("select * from ...

  9. 自动化测试学习之路--java 数组

    数组的定义与为数组元素分配空间和赋值是分开进行的,称为动态初始化. 在数组定义的同时就为数组元素分配空间并赋值,称为静态初始化. 一维数组举例: //动态初始化 int[] intArr; intAr ...

  10. jmeter4.0☞如何汉化(二)

    如何汉化jmeter打开jmeter,选择options_choose language_Chinese(simplified),如下图: 刚刚下载使用jmeter4.0的时候有点懵圈,英语实在是差劲 ...