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");
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"));
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>
*/
net.sf.json的更多相关文章
- net.sf.json.JSONException: There is a cycle in the hierarchy!的解决办法
使用Hibernate manytoone属性关联主表的时候,如果使用JSONArray把pojo对象转换成json对象时,很容易出现循环的异常.解决的办法就是, 在转换json对象时忽略manyto ...
- Json_异常_net.sf.json.JSONException: JSONObject["solution"] not found.
net.sf.json.JSONException: JSONObject["solution"] not found. 没有这个元素造成的. 问题代码: JSONObject j ...
- 使用JSONObject遇到的问题,java.lang.NoClassDefFoundError: net/sf/json/JSONObject
先是报 java.lang.NoClassDefFoundError: net/sf/json/JSONObject 这个错误, 打开项目属性找到java build path中的libaries,找 ...
- Net.Sf.Json java Object to JsonObject
public class People{ private String name; public void setName(String name){ this.name = name; } publ ...
- java.lang.ClassNotFoundException: net.sf.json.JSONArray,java.lang.NoClassDefFoundError: net/sf/json/JSONArray jetty跑项目遇到的问题
2016-05-18 15:44:25 ERROR Dispatcher.error[user:|url:]:L38 - Dispatcher initialization failed Unable ...
- net.sf.json 时间格式的转化
后台代码 //后台代码 response.setCharacterEncoding("UTF-8"); JsonConfig jsonConfig = new JsonConfig ...
- net.sf.json.JSONObject 和org.json.JSONObject 的差别
http://my.oschina.net/wangwu91/blog/340721 net.sf.json.JSONObject 和org.json.JSONObject 的差别. 一.创建jso ...
- atitit.解决net.sf.json.JSONException There is a cycle in the hierarchy
atitit.解决net.sf.json.JSONException There is a cycle in the hierarchy 1. 环境:使用hibernate4跟个,,要不个哪的对象系列 ...
- net.sf.json.JSONException: java.lang.NoSuchMethodException
在尝试将json对象转换为list时候出现了如下错误 Exception in thread "main" net.sf.json.JSONException: java.lang ...
- net.sf.json.JSONException: Object is null
出现这个错误的原因是net.sf.json.JSONArray或JSONObject转换时,对象内包含另一个对象,而该被包含的对象为NULL,所以抛出异常. 补充: 最可恨的是,明明转换的时候已经成功 ...
随机推荐
- vsCode打开多个终端
可以在vsCode里面启动两个终端 ,点击+号就可以添加一个终端. 避免项目启动的多了需要开好几个编辑器,造成代码混淆.
- CSS(3)多种方法实现水平垂直居中效果
CSS实现水平垂直居中对齐 在CSS中实现水平居中,会比较简单.常见的,如果想实现inline元素或者inline-block元素水平居中,可以在其父级块级元素上设置text-align: cente ...
- CCS的文本及字体
1.文本 CSS 文本属性可定义文本的外观 通过文本属性,您可以改变文本的颜色.字符间距,对齐文本,装饰文本,对文本进行缩进,等等. 缩进文本 把 Web 页面上的段落的第一行缩进,这是一种最常用的文 ...
- ssm项目导入activiti依赖后jsp页面el表达式报错
错误原因:Tomcat8.x与activiti6.0依赖冲突导致 解决方法: 1.修改tomcat版本 2.在pom.xml中修改 在依赖中把 <dependency> <group ...
- ajax的小知识---总是得到重复的数据
按xmlhttp.open("GET","/try/ajax/demo_get.php",true);发送,可能会得到缓存中的结果; 可以改为xmlhttp.o ...
- c++中thread的死法
在调用thread后,不调用join()函数时, 线程的两种行为:1)自己管理join()函数 2)生成后不管理,线程完了自己杀死自己detach()函数.使用detach()时,线程比较简单,一般 ...
- Redis管道功能
Redis管道,Redis存储用户浏览数据 当频繁的存储获取Redis数据库中的数据时,可以使用Redis的pipeline(管道)功能,将多个相互没有依赖关系的读写操作,如:下一步执行的Redis操 ...
- 使用OpenLDAP部署目录服务
- java web(六):mybatis之一对一、一对多、多对多映射
前言: 百度百科: MyBatis 是一款优秀的持久层框架,它支持定制化 SQL.存储过程以及高级映射.MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集.MyBatis 可 ...
- 在<canvas>上绘制img(drawImage())时需要注意的事
<canvas>标签相当于是一个画布,css决定画布的样式(这块画布的背景颜色.大小等),脚本(一般使用JavaScript)就是画笔,我们可以在这个画布上绘制线条.形状.文字.图片等. ...