解析json方式之net.sf.json
前面转载了json解析的技术:fastjson,今天说下另外一种技术。
下载地址
- 本次使用版本:http://sourceforge.net/projects/json-lib/files/json-lib/json-lib-1.1/
- 最新版本:http://sourceforge.net/projects/json-lib/files/json-lib/
使用net.sf.json需要导入的包
JSONObject
- package com.itlwc.test;
- import net.sf.json.JSONArray;
- import net.sf.json.JSONObject;
- public class Test {
- public static void main(String[] args) {
- // 创建JSONObject
- JSONObject jsonObject = new JSONObject();
- jsonObject.put("username", "lwc");
- jsonObject.put("password", "123");
- // 打印:1
- System.out.println(jsonObject);
- // 增加属性,打印:2
- jsonObject.element("sex", "男");
- System.out.println(jsonObject);
- // 根据key返回,打印:3
- System.out.println(jsonObject.get("sex"));
- // 判读输出对象的类型
- boolean isArray = jsonObject.isArray();
- boolean isEmpty = jsonObject.isEmpty();
- boolean isNullObject = jsonObject.isNullObject();
- // 打印:4
- System.out.println("是否数组:" + isArray + " 是否空:" + isEmpty + " 是否空对象:"
- + isNullObject);
- // 把JSONArray增加到JSONObject中
- JSONArray jsonArray = new JSONArray();
- jsonArray.add(0, "lwc");
- jsonArray.add(1, "nxj");
- // 开始增加
- jsonObject.element("student", jsonArray);
- // 打印:5
- System.out.println(jsonObject);
- }
- }
- /*
- 打印结果
- {"username":"lwc","password":"123"}
- {"username":"lwc","password":"123","sex":"男"}
- 男
- 是否为数组:false 是否为空:false 是否为空对象:false
- {"username":"lwc","password":"123","sex":"男","student":["lwc","nxj"]}
- */
JSONArray
- package com.itlwc.test;
- import net.sf.json.JSONArray;
- import net.sf.json.JSONObject;
- public class Test {
- public static void main(String[] args) {
- //创建JSONArray
- JSONArray jsonArray = new JSONArray();
- jsonArray.add(0, "lwc");
- jsonArray.add(1, "nxj");
- jsonArray.element("mxj");
- //打印:1
- System.out.println(jsonArray);
- //根据下标返回,打印:2
- System.out.println(jsonArray.get(0));
- //根据下标设置新值,打印:3
- jsonArray.set(0, "itlwc");
- System.out.println(jsonArray);
- //把JSONObject放入到JSONArray中
- JSONObject jsonObject = new JSONObject();
- jsonObject.put("username", "lwc");
- jsonObject.put("password", "123");
- //开始增加,打印:4
- jsonArray.add(jsonObject);
- System.out.println(jsonArray);
- //遍历,打印:5
- for(int i=0;i<jsonArray.size();i++){
- System.out.print(jsonArray.get(i)+"\t");
- }
- }
- }
- /*
- 打印结果
- ["lwc","nxj","mxj"]
- lwc
- ["itlwc","nxj","mxj"]
- ["itlwc","nxj","mxj",{"username":"lwc","password":"123"}]
- itlwc nxj mxj {"username":"lwc","password":"123"}
- */
JavaBean与json字符串互转
- package com.itlwc.test;
- import net.sf.json.JSONObject;
- import com.itlwc.entity.Student;
- public class Test {
- public static void main(String[] args) {
- // JavaBean对象转json字符串
- Student stu1 = new Student("lwc", "111111");
- //这个方法是将对象转为json对象(不论是将json字符串还是java对象都是这个方法)
- JSONObject jsonObject = JSONObject.fromObject(stu1);
- System.out.println(jsonObject);
- // json字符串转JavaBean
- String jsondata = "{\"password\":\"111111\",\"username\":\"lwc\"}";
- JSONObject jsonObject1 = JSONObject.fromObject(jsondata);
- Student stu2 = (Student) JSONObject.toBean(jsonObject1, Student.class);
- System.out.println(stu2);
- }
- }
- /*
- 打印结果:
- {"password":"111111","username":"lwc"}
- 用户: lwc 密码:111111
- */
List与json字符串互转
- package com.itlwc.test;
- import java.util.ArrayList;
- import java.util.List;
- import net.sf.json.JSONArray;
- import net.sf.json.JSONObject;
- import com.itlwc.entity.Student;
- public class Test {
- public static void main(String[] args) {
- // List转json字符串
- List list = new ArrayList();
- list.add(new Student("lwc", "111111"));
- list.add(new Student("nxj", "222222"));
- //将list集合转为json数组对象
- JSONArray jsonArray = JSONArray.fromObject(list);
- System.out.println(jsonArray);
- // json字符串转List
- List list1 = new ArrayList();
- String jsondata = "[{\"password\":\"111111\",\"username\":\"lwc\"},{\"password\":\"222222\",\"username\":\"nxj\"}]";
- JSONArray jsonArray1 = JSONArray.fromObject(jsondata);
- for (int i = 0; i < jsonArray1.size(); i++) {
- JSONObject jsonObject2 = jsonArray1.getJSONObject(i);
- Student stu2 = (Student) JSONObject.toBean(jsonObject2,
- Student.class);
- list1.add(stu2);
- }
- System.out.println(list1);
- }
- }
- /*
- 打印结果:
- [{"password":"111111","username":"lwc"},{"password":"222222","username":"nxj"}]
- [用户: lwc 密码:111111, 用户: nxj 密码:222222]
- */
Map与json字符串互转
- package com.itlwc.test;
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Map;
- import java.util.Set;
- import net.sf.json.JSONObject;
- import com.itlwc.entity.Student;
- public class Test {
- public static void main(String[] args) {
- // Map转json字符串
- Map map = new HashMap();
- map.put("1", new Student("lwc", "111111"));
- map.put("2", new Student("nxj", "222222"));
- JSONObject jsonMap = JSONObject.fromObject(map);
- System.out.println(jsonMap);
- // json字符串转Map
- String jsondata = "{\"2\":{\"password\":\"222222\",\"username\":\"nxj\"},\"1\":{\"password\":\"111111\",\"username\":\"lwc\"}}";
- Map map1 = (Map) JSONObject.fromObject(jsondata);
- Set set = map1.keySet();
- Iterator ite = set.iterator();
- while (ite.hasNext()) {
- String key = (String) ite.next();
- JSONObject jsonObject = JSONObject.fromObject(map1.get(key));
- Student stu = (Student) JSONObject
- .toBean(jsonObject, Student.class);
- System.out.println(key + " " + stu);
- }
- }
- }
- /*
- 打印结果:
- {"2":{"password":"222222","username":"nxj"},"1":{"password":"111111","username":"lwc"}}
- 2 用户: nxj 密码:222222
- 1 用户: lwc 密码:111111
- */
JSONArray与List互转
- package com.itlwc.test;
- import java.util.ArrayList;
- import java.util.Iterator;
- import java.util.List;
- import net.sf.json.JSONArray;
- import net.sf.json.JsonConfig;
- import com.itlwc.entity.Student;
- public class Test {
- public static void main(String[] args) {
- //List转型JSONArray
- List<Student> list = new ArrayList<Student>();
- list.add(new Student("lwc", "111111"));
- list.add(new Student("nxj", "222222"));
- JSONArray jsonArray = JSONArray.fromObject(list);
- System.out.println(jsonArray.toString());
- //JSONArray转型List
- List<Student> list2 = JSONArray.toList(jsonArray, new Student(), new JsonConfig());
- Iterator<Student> ite = list2.iterator();
- while(ite.hasNext()){
- Student stu =ite.next();
- System.out.println(stu);
- }
- }
- }
- /*
- 打印结果
- [{"password":"111111","username":"lwc"},{"password":"222222","username":"nxj"}]
- 用户: lwc 密码:111111
- 用户: nxj 密码:222222
- */
JSONArray与数组互转
- package com.itlwc.test;
- import net.sf.json.JSONArray;
- public class Test {
- public static void main(String[] args) {
- // Java数组转JSONArray
- boolean[] boolArray = new boolean[] { true, false, true };
- JSONArray jsonArray = JSONArray.fromObject(boolArray);
- System.out.println(jsonArray.toString());
- // JSONArray转Java数组
- Object obj[] = jsonArray.toArray();
- for (Object o : obj) {
- System.out.print(o + " ");
- }
- }
- }
- /*
- 打印结果 :
- [true,false,true]
- true false true
- */
XML与JSON互转
需要导入xom-1.1.jar
- package com.itlwc.test;
- import net.sf.json.JSON;
- import net.sf.json.JSONObject;
- import net.sf.json.xml.XMLSerializer;
- public class Test {
- public static void main(String[] args) throws Exception {
- // XML转JSON
- String xml = "<root>" + "<name type='type'>zhaipuhong</name>"
- + "<gender>male</gender>" + "<birthday>" + "<year>1970</year>"
- + "<month>12</month>" + "<day>17</day>" + "</birthday>"
- + "</root>";
- XMLSerializer xmlSerializer = new XMLSerializer();
- JSON json = xmlSerializer.read(xml);
- System.out.println(json.toString(2));
- // JSON转XML
- String jsondata = "{\"root\":{" + "\"name\":\"zhaipuhong\","
- + "\"gender\":\"male\"," + "\"birthday\":{"
- + "\"year\":\"1970\"," + "\"month\":\"12\"," + "\"day\":\"17\""
- + "}" + "}" + "}";
- JSONObject jsonObject = JSONObject.fromObject(jsondata);
- String xmlstr = new XMLSerializer().write(jsonObject);
- System.out.println(xmlstr);
- }
- }
- /*
- 打印结果:
- {
- "name": "zhaipuhong",
- "gender": "male",
- "birthday": {
- "year": "1970",
- "month": "12",
- "day": "17"
- }
- }
- <?xml version="1.0" encoding="UTF-8"?>
- <o>
- <root class="object">
- <birthday class="object">
- <day type="string">17</day>
- <month type="string">12</month>
- <year type="string">1970</year>
- </birthday>
- <gender type="string">male</gender>
- <name type="string">zhaipuhong</name>
- </root>
- </o>
- */
解析json方式之net.sf.json的更多相关文章
- java解析JSON (使用net.sf.json)
例如JSON字符串str如下: { "data": [ { "basic_title": "运筹帷幄因 ...
- JSON数据转换之net.sf.json包的使用
转载 解析json之net.sf.json https://blog.csdn.net/itlwc/article/details/38442667 一.介绍 使用之前需要导入的jar包: json- ...
- json解析异常 - net.sf.json.JSONException: java.lang.reflect.InvocationTargetException
注:在项目中, 我使用原生的ajax请求数据的时候, JSONObject没能帮我解析, 当却不给我报错, 我是在junit单元测试中测试的时候, 发现的.发现好多时候, 特别是通过ajax请求, 不 ...
- java中转换json方式(JSONArray,JSONObject),json解析
package com.yunos.tv.video.resource.controller.web; import java.util.ArrayList; import java.util.Has ...
- Java中net.sf.json包关于JSON与对象互转的问题
在Web开发过程中离不开数据的交互,这就需要规定交互数据的相关格式,以便数据在客户端与服务器之间进行传递.数据的格式通常有2种:1.xml:2.JSON.通常来说都是使用JSON来传递数据.本文正是介 ...
- Java中net.sf.json包关于JSON与对象互转的坑
在Web开发过程中离不开数据的交互,这就需要规定交互数据的相关格式,以便数据在客户端与服务器之间进行传递.数据的格式通常有2种:1.xml:2.JSON.通常来说都是使用JSON来传递数据.本文正是介 ...
- net.sf.json.JSONObject 和org.json.JSONObject 的差别
http://my.oschina.net/wangwu91/blog/340721 net.sf.json.JSONObject 和org.json.JSONObject 的差别. 一.创建jso ...
- net.sf.json.JSONException: There is a cycle in the hierarchy!的解决办法
使用Hibernate manytoone属性关联主表的时候,如果使用JSONArray把pojo对象转换成json对象时,很容易出现循环的异常.解决的办法就是, 在转换json对象时忽略manyto ...
- net.sf.json 时间格式的转化
后台代码 //后台代码 response.setCharacterEncoding("UTF-8"); JsonConfig jsonConfig = new JsonConfig ...
随机推荐
- 阿里云提醒 网站被WebShell木马后门的处理过程
昨晚凌晨收到新客户的安全求助,说是阿里云短信提示,网站有webshell木马文件被植入,我们SINE安全公司立即成立,安全应急响应小组,客户提供了阿里云的账号密码,随即登陆阿里云进去查看到详情,登陆云 ...
- 【EXCEL】SUMIF(条件を指定して数値を合計する)
Mirocrosoft Excel
- 【python3.X】python练习笔记[1]
##三位数水仙花 ##方法一,小于指定数字的水仙花数 x=eval(input()) a,b,c = 0,0,0 for i in range (100,x,1): a=i%10 b=i//100 c ...
- Mac OS下搭建Hadoop + Spark集群
首先注意版本兼容问题!!!本文采用的是Scala 2.11.8 + Hadoop 2.7.5 + Spark 2.2.0 请在下载Spark时务必看清对应的Scala和Hadoop版本! 一.配置JD ...
- 《Cracking the Coding Interview》读书笔记
<Cracking the Coding Interview>是适合硅谷技术面试的一本面试指南,因为题目分类清晰,风格比较靠谱,所以广受推崇. 以下是我的读书笔记,基本都是每章的课后习题解 ...
- [电子书] 《Android编程兵书》PDF
Android编程兵书 内容简介: 这是一本Android开发书籍,内容讲解详细,例子丰富,能帮助读者举一反三.在<Android编程兵书>中,每一个知识点的描述都非常详细,并且每一个知识 ...
- 虚拟现实-VR-UE4-构建光照显示光照构建失败,Swarm启动失败
闲的无聊折腾,发现想构建光照的时候,总是显示失败 如下图 百度许久,有大神指出是我在编译源码的的时候没有将其中的某个模块编译进去,只需要重新编译摸个模块就好 在UE4 的sln文件下,会看到一个Unr ...
- CPU拓扑结构
本篇旨在认识一下以下三种CPU拓扑结构分别是什么: Symmetric multiprocessing (SMP) Non-uniform memory access (NUMA) Simultane ...
- 机器学习/逻辑回归(logistic regression)/--附python代码
个人分类: 机器学习 本文为吴恩达<机器学习>课程的读书笔记,并用python实现. 前一篇讲了线性回归,这一篇讲逻辑回归,有了上一篇的基础,这一篇的内容会显得比较简单. 逻辑回归(log ...
- ArcGIS10.2中文版安装和破解教程
http://jingyan.baidu.com/article/e73e26c0cb5c1324adb6a791.html