赞
踩
// JSONObject 是一个类 JSONObject jsonObject = new JSONObject();
// JSONObject 只是一种数据结构,可以理解为JSON格式的数据结构(key-value 结构),可以使用put方法给json对象添加元素。
// JSONObject可以很方便的转换成字符串,也可以很方便的把其他对象转换成JSONObject对象。
JSONObject-lib包是一个beans(类),collections,maps,java arrays和xml和JSON互相转换的包。
(1)JSON中不区分整数、小数等类型,而统一使用Number来存储数字。
(2)Array表示数组,以中括号"[]"括起来,元素之间以逗号分隔,元素可以为任意类型。
(3)Object表示对象,类似于C语言中的结构体,以花括号"{}“括起来,其元素要求为键值对,key必须为String类型的,而value则可为任意类型。key和value之间以”:"表示映射关系,元素之间也是以逗号分隔。
直接构建即直接实例化一个JSONObject对象,而后调用其put()方法,将数据写入。put()方法的第一个参数为key值,必须为String类型,第二个参数为value,可以为boolean、double、int、long、Object、Map以及Collection等。当然,double以及int等类型只是在Java中,写入到json中时,统一都会以Number类型存储。
范例:
import org.json.JSONObject; public class JSONObjectSample { public static void main(String[] args) { createJson(); } private static void createJson() { JSONObject obj = new JSONObject(); obj.put("name", "John"); obj.put("sex", "male"); obj.put("age", 22); obj.put("is_student", true); obj.put("hobbies", new String[] {"hiking", "swimming"}); //调用toString()方法可直接将其内容打印出来 System.out.println(obj.toString()); } }
输出结果为:
{"hobbies":["hiking","swimming"],"sex":"male","name":"John","is_student":true,"age":22}
这里可以看到,为了压缩大小以便于更高效地传输,json把所有空格、换行符等空白符全部去掉了。如果想要直观点看其内容,可以用一些在线的json解析器看,例如:http://www.jsoneditoronline.org/
使用HashMap构建json,实际上即先创建好一个HashMap对象并且将数据打包进去,而后在创建JSONObject时将其作为一个参数传进去。
范例:
public class JSONObjectSample { public static void main(String[] args) { createJsonByMap(); } private static void createJsonByMap() { Map<String, Object> data = new HashMap<String, Object>(); data.put("name", "John"); data.put("sex", "male"); data.put("age", 22); data.put("is_student", true); data.put("hobbies", new String[] {"hiking", "swimming"}); System.out.println(new JSONObject(data).toString()) } }
相较于前两种方法,实际开发中应用JavaBean构建json的情况更为常见,因为这样代码的重用率更高。
先把对象转换为JSON字符串 再转为 JSONObject
范例:
import org.json.JSONObject; public class JSONObjectSample { public static void main(String[] args) { createJsonByJavaBean(); } private static void createJsonByJavaBean() { PersonInfo info = new PersonInfo(); info.setName("John"); info.setSex("male"); info.setAge(22); info.setStudent(true); info.setHobbies(new String[] {"hiking", "swimming"}); //生成json格式 System.out.println(JSON.toJSON(info)); // 对象转成string String string = JSON.toJSON(info).toString(); String s = JSON.toJSONString(info); String stuString = JSONObject.toJSONString(info); // String 转为JSONObject JSONObject jsonObject = JSONObject.parseObject(stuString); System.out.println(jsonObject.getString("age")); } }
需要注意一点,JavaBean一定要有getter方法,否则会无法访问存储的数据。
System.out.println("=========JSON字符串转换成JSON对象===========");
String studentString = "{\"id\":1,\"age\":2,\"name\":\"zhang\"}";
JSONObject jsonObject2 = JSONObject.parseObject(studentString);
System.out.println(jsonObject2.toJSONString());//{"name":"zhang","id":1,"age":2}
list转json字符串 - > json字符串转listJson格式(parseArray)
ArrayList<Student> studentLsit = new ArrayList<>(); Student student1 = new Student(); student1.setId(1); student1.setAge("20"); student1.setName("asdasdasd"); studentLsit.add(student1); Student student2 = new Student(); student2.setId(2); student2.setAge("20"); student2.setName("aaaa:;aaa"); studentLsit.add(student2); //list转json字符串 String string = JSON.toJSON(studentLsit).toString(); String s = JSON.toJSONString(studentLsit);//(建议使用下面这种) System.out.println(string); //json字符串转listJson格式 JSONArray jsonArray = JSONObject.parseArray(string); System.out.println(jsonArray.getString(1));
List<Student> studentList1 = new ArrayList<>(); Student student1 = new Student(1,"1"); Student student2 = new Student(2,"2"); studentList1.add(student1);studentList1.add(student2); // string格式的list转成 list List<Student> studentList = JSON.parseObject(JSONObject.toJSONString(studentList1),new TypeReference<ArrayList<Student>>(){});//JSON / JSONObject 都可 for (Student stu : studentList) { System.out.println(stu.toString()); } List<Student> studentList2 = JSON.parseArray(JSONObject.toJSONString(studentList1),Student.class); //这里JSONObject 也可以 studentList2 = JSONObject.parseArray(JSONObject.toJSONString(studentList1),Student.class); for (Student stu : studentList2) { System.out.println(stu.toString()); }
解析json主要是基本类型如Number、boolean等,与数组Array。
基本类型的解析直接调用JSONObject对象的getXxx(key)方法,如果获取字符串则getString(key),布尔值则getBoolean(key),以此类推。
数组的解析稍微麻烦一点,需要通过JSONObject对象的getJSONArray(key)方法获取到一个JSONArray对象,再调用JSONArray对象的get(i)方法获取数组元素,i为索引值。
范例:
首先在工程目录"src/main/java"下创建一个json文件,用于解析。
demo.json:
{
"hobbies": [
"hiking",
"swimming"
],
"sex": "male",
"name": "John",
"is_student": true,
"age": 22
}
在pom.xml中加入对commons-io的依赖,以便于使用FileUtils进行文件访问:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.studying</groupId> <artifactId>myjson</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>myjson</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20160810</version> </dependency> <!--加入对commons-io的依赖--> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> </dependencies> </project>
主类:
import java.io.File; import java.io.IOException; import org.apache.commons.io.FileUtils; import org.json.JSONArray; import org.json.JSONObject; public class JSONObjectSample { public static void main(String[] args) throws IOException { File file = new File("src/main/java/demo.json"); String content = FileUtils.readFileToString(file); //对基本类型的解析 JSONObject obj = new JSONObject(content);//自己使用的是阿里下面的包 不能这样创建对象 要调用parseObject() System.out.println("name:" + obj.getString("name")); System.out.println("sex:" + obj.getString("sex")); System.out.println("age" + obj.getInt("age")); System.out.println("is_student" + obj.getBoolean("is_student")); //对数组的解析 JSONArray hobbies = obj.getJSONArray("hobbies"); System.out.println("hobbies:"); for (int i = 0; i < hobbies.length(); i++) { String s = (String) hobbies.get(i); System.out.println(s); } } }
自己做的时候遇到一个问题
JSONObject jsonObject3 = new JSONObject(map3);
// 这里如果是jsonObject 而不是 jsonObject3.toJSONString()
map2.put("1",jsonObject3);
map2.put("7",jsonObject3);
JSONObject jsonObject2 = new JSONObject(map2);
System.out.println(jsonObject2);//{"1":{"文本":[2,22],"红包":[1,11]},"7":{"$ref":"$.1"}}
就会出现上面的情况 "$ref":"$.1"
集合,对象想要转换为 JSONObject
要先转换为 json 字符串 之后 再转换为 JSONObject 或者 JSONArray
如下:
// list 对象 转换为 listJson List<Student> studentLsit = new ArrayList<>(); Student student1 = new Student(1,"1"); Student student2 = new Student(2,"2"); studentLsit.add(student1);studentLsit.add(student2); //list转json字符串 // Object toJSON = JSON.toJSON(studentLsit); // System.out.println(JSON.toJSON(studentLsit).getClass());//class com.alibaba.fastjson.JSONArray // String s = JSON.toJSONString(studentLsit); // String string = JSON.toJSON(studentLsit).toString(); String s1 = JSONObject.toJSONString(studentLsit); //json字符串转listJson格式 JSONArray jsonArray = JSONObject.parseArray(s1); System.out.println(jsonArray.getString(1)); // java Bean 类 转换为 JSONObject Student student = new Student(12,"asd"); // String s1 = JSON.toJSONString(student); String s = JSONObject.toJSONString(student); JSONObject jsonObject = JSONObject.parseObject(s1); System.out.println(jsonObject.getString("age"));
参考
https://www.cnblogs.com/joahyau/p/6736637.html
https://blog.csdn.net/u012448904/article/details/84292821
https://www.jb51.net/article/76571.htm
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。