亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Java使用JSONObject操作json實(shí)例解析

 更新時(shí)間:2020年04月11日 10:08:46   作者:一枕江風(fēng)  
這篇文章主要介紹了Java使用JSONObject操作json,結(jié)合實(shí)例形式較為詳細(xì)的分析了Java使用JSONObject解析json數(shù)據(jù)相關(guān)原理、使用技巧與操作注意事項(xiàng),需要的朋友可以參考下

本文實(shí)例講述了Java使用JSONObject操作json。分享給大家供大家參考,具體如下:

簡(jiǎn)介

在程序開發(fā)過程中,在參數(shù)傳遞,函數(shù)返回值等方面,越來越多的使用JSON。JSON(JavaScript Object Notation)是一種輕量級(jí)的數(shù)據(jù)交換格式,同時(shí)也易于機(jī)器解析和生成、易于理解、閱讀和撰寫,而且Json采用完全獨(dú)立于語言的文本格式,這使得Json成為理想的數(shù)據(jù)交換語言。 
JSON建構(gòu)于兩種結(jié)構(gòu):

“名稱/值”對(duì)的集合(A Collection of name/value pairs),在不同的語言中,它被理解為對(duì)象(Object), 記錄(record), 結(jié)構(gòu)(struct), 字典(dictionary), 有趣列表(keyed list), 哈希表(hash table)或者關(guān)聯(lián)數(shù)組(associative array)。

JSONObject依賴:

最后一行需要保留,有兩個(gè)jdk版本的實(shí)現(xiàn):json-lib-2.1-jdk13.jar和json-lib-2.1-jdk15.jar

<dependency>
   <groupId>net.sf.json-lib</groupId>
   <artifactId>json-lib</artifactId>
   <version>2.4</version>
   <classifier>jdk15</classifier>
</dependency>

使用net.sf.json需要導(dǎo)入的jar包

jar包下載:https://pan.baidu.com/s/1iZiXw55TPwIxYFQQCaR9Gw

或者點(diǎn)擊此處本站下載。

JSONObject

創(chuàng)建JSONObject,添加屬性

//創(chuàng)建JSONObject
JSONObject json = new JSONObject();
//添加屬性
json.put("username", "張三");
json.put("password", "123");
//打印
System.out.println(json);
 
//增加屬性
json.element("sex", "男");
json.put("age", 18);
System.out.println(json);

根據(jù)key返回輸出

System.out.println(json.get("sex"));

判斷輸出對(duì)象的類型

boolean isArray = json.isArray();
boolean isEmpty = json.isEmpty();
boolean isNullObject = json.isNullObject();
System.out.println("是否數(shù)組:"+isArray+", 是否空:"+isEmpty+", 是否空為空對(duì)象:"+isNullObject);

把JSONArray添加到JSONObject中

/把JSONArray添加到JSONObject中
JSONArray jsonArray = new JSONArray();
jsonArray.add(0, "張三");
jsonArray.add(1, "123");
//開始添加
json.element("student", jsonArray);
System.out.println(json);

全部代碼:

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
public class Json {
	public static void main(String[] args) {
		//創(chuàng)建JSONObject
		JSONObject json = new JSONObject();
		//添加屬性
		json.put("username", "張三");
		json.put("password", "123");
		//打印
		System.out.println(json);
		
		//增加屬性
		json.element("sex", "男");
		json.put("age", 18);
		System.out.println(json);
		
		//根據(jù)key返回
		System.out.println(json.get("sex"));
		
		//判斷輸出對(duì)象的類型
		boolean isArray = json.isArray();
		boolean isEmpty = json.isEmpty();
		boolean isNullObject = json.isNullObject();
		System.out.println("是否數(shù)組:"+isArray+", 是否空:"+isEmpty+", 是否空為空對(duì)象:"+isNullObject);
		
		System.out.println("=====");
		
		//把JSONArray添加到JSONObject中
		JSONArray jsonArray = new JSONArray();
		jsonArray.add(0, "張三");
		jsonArray.add(1, "123");
		//開始添加
		json.element("student", jsonArray);
		System.out.println(json);
	}
}

運(yùn)行結(jié)果:

JSONArray

創(chuàng)建JSONArray,添加屬性值

//創(chuàng)建JSONArray
JSONArray jsonArray = new JSONArray();
//添加
jsonArray.add(0, "張三");
jsonArray.add(1, "123");
jsonArray.element("男");
System.

根據(jù)下標(biāo)返回輸出

System.out.println(jsonArray.get(0));

根據(jù)下標(biāo)設(shè)置新值,修改

jsonArray.set(0, "李四");
System.out.println(jsonArray);

把JSONObject放入到JSONArray中

//把JSONObject放入到JSONArray中
JSONObject jsonObject = new JSONObject();
jsonObject.put("username", "張三");
jsonObject.put("password", "123");
jsonArray.add(jsonObject);
System.

全部代碼:

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
public class Json {
	public static void main(String[] args) {
		//創(chuàng)建JSONArray
		JSONArray jsonArray = new JSONArray();
		//添加
		jsonArray.add(0, "張三");
		jsonArray.add(1, "123");
		jsonArray.element("男");
		System.out.println(jsonArray);
		
		//根據(jù)下標(biāo)返回輸出
		System.out.println(jsonArray.get(0));
		
		//根據(jù)下標(biāo)設(shè)置新值,修改
		jsonArray.set(0, "李四");
		System.out.println(jsonArray);
		
		//把JSONObject放入到JSONArray中
		JSONObject jsonObject = new JSONObject();
		jsonObject.put("username", "張三");
		jsonObject.put("password", "123");
		jsonArray.add(jsonObject);
		System.out.println(jsonArray);
		
		//循環(huán)輸出
		for(int i = 0; i < jsonArray.size(); i++) {
			System.out.println(jsonArray.get(i));
		}
	}
}

運(yùn)行結(jié)果

JavaBean與json字符串互轉(zhuǎn)

student類:

public class Student {
	private String username;
	private String password;
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public Student(String username, String password) {
		super();
		this.username = username;
		this.password = password;
	}
	public Student() {
		super();
		// TODO Auto-generated constructor stub
	}
	@Override
	public String toString() {
		return "Student [username=" + username + ", password=" + password + "]";
	}
}

定義對(duì)象,JavaBean對(duì)象轉(zhuǎn)json字符串

//定義對(duì)象
Student stu = new Student("張三", "123456");
//JavaBean對(duì)象轉(zhuǎn)json字符串
JSONObject jsonObject = JSONObject.fromObject(stu);
System.out.println(jsonObject);

json字符串轉(zhuǎn)為javaBean

//json字符串轉(zhuǎn)為javaBean
//定義json字符串
String jsondata = "{\"username\":\"李四\", \"password\":\"123\"}";
//轉(zhuǎn)為json對(duì)象
JSONObject json = JSONObject.fromObject(jsondata);
//轉(zhuǎn)為JavaBean對(duì)象
Student stu2 = (Student)JSONObject.toBean(json, Student.class);
System.out.println(stu2.toString());

全部代碼:

import net.sf.json.JSONObject;
 
public class Json {
	public static void main(String[] args) {
		//定義對(duì)象
		Student stu = new Student("張三", "123456");
		//JavaBean對(duì)象轉(zhuǎn)json字符串
		JSONObject jsonObject = JSONObject.fromObject(stu);
		System.out.println(jsonObject);
		
		//json字符串轉(zhuǎn)為javaBean
		//定義json字符串
		String jsondata = "{\"username\":\"李四\", \"password\":\"123\"}";
		//轉(zhuǎn)為json對(duì)象
		JSONObject json = JSONObject.fromObject(jsondata);
		//轉(zhuǎn)為JavaBean對(duì)象
		Student stu2 = (Student)JSONObject.toBean(json, Student.class);
		System.out.println(stu2.toString());
	}
}

輸出結(jié)果:

List與json字符串互轉(zhuǎn)

先定義list集合,list轉(zhuǎn)json字符串

//定義list集合
List list = new ArrayList();
list.add(new Student("張三", "123"));
list.add(new Student("李四", "456"));
//list轉(zhuǎn)json字符串
JSONArray jsonArray = JSONArray.fromObject(list);
System.out.println(jsonArray);

json字符串轉(zhuǎn)list

//json字符串轉(zhuǎn)list
List list2 = new ArrayList();
String jsondata = "[{\"password\":\"123\",\"username\":\"張三\"},{\"password\":\"456\",\"username\":\"李四\"}]";
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);
	list2.add(stu2);
}
System.out.println(list2);

全部代碼

import java.util.ArrayList;
import java.util.List;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
public class Json {
	public static void main(String[] args) {
		//定義list集合
		List list = new ArrayList();
		list.add(new Student("張三", "123"));
		list.add(new Student("李四", "456"));
		//list轉(zhuǎn)json字符串
		JSONArray jsonArray = JSONArray.fromObject(list);
		System.out.println(jsonArray);
		
		//json字符串轉(zhuǎn)list
		List list2 = new ArrayList();
		String jsondata = "[{\"password\":\"123\",\"username\":\"張三\"},{\"password\":\"456\",\"username\":\"李四\"}]";
		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);
			list2.add(stu2);
		}
		System.out.println(list2);
	}
}

運(yùn)行結(jié)果

Map與json字符串互轉(zhuǎn)

定義map集合,Map轉(zhuǎn)json字符串

//定義map集合
Map map = new HashMap();
map.put("1", new Student("張三", "123"));
map.put("2", new Student("李四", "456"));
//Map轉(zhuǎn)json字符串
JSONObject jsonMap = JSONObject.fromObject(map);
System.out.println(jsonMap);

定義字符串map集合,map集合字符串轉(zhuǎn)為map

//定義字符串map集合
String jsondata = "{\"1\":{\"password\":\"123\",\"username\":\"張三\"},\"2\":{\"password\":\"456\",\"username\":\"李四\"}}";
//map集合字符串轉(zhuǎn)為map
Map map2 = (Map)JSONObject.fromObject(jsondata);
Set set = map2.keySet();
//定義迭代器,迭代輸出
Iterator ite = set.iterator();
while(ite.hasNext()) {
	//取出一個(gè)字符串對(duì)象
	String key = (String)ite.next();
	//轉(zhuǎn)為json格式
	JSONObject jsonObject = JSONObject.fromObject(map2.get(key));
	//轉(zhuǎn)為對(duì)象
	Student stu = (Student)JSONObject.toBean(jsonObject, Student.class);
	System.out.println(key+"  "+stu);
}

全部代碼

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
 
import net.sf.json.JSONObject;
 
public class Json {
	public static void main(String[] args) {
		//定義map集合
		Map map = new HashMap();
		map.put("1", new Student("張三", "123"));
		map.put("2", new Student("李四", "456"));
		//Map轉(zhuǎn)json字符串
		JSONObject jsonMap = JSONObject.fromObject(map);
		System.out.println(jsonMap);
		
		//定義字符串map集合
		String jsondata = "{\"1\":{\"password\":\"123\",\"username\":\"張三\"},\"2\":{\"password\":\"456\",\"username\":\"李四\"}}";
		//map集合字符串轉(zhuǎn)為map
		Map map2 = (Map)JSONObject.fromObject(jsondata);
		Set set = map2.keySet();
		//定義迭代器,迭代輸出
		Iterator ite = set.iterator();
		while(ite.hasNext()) {
			//取出一個(gè)字符串對(duì)象
			String key = (String)ite.next();
			//轉(zhuǎn)為json格式
			JSONObject jsonObject = JSONObject.fromObject(map2.get(key));
			//轉(zhuǎn)為對(duì)象
			Student stu = (Student)JSONObject.toBean(jsonObject, Student.class);
			System.out.println(key+"  "+stu);
		}
	}
}

運(yùn)行結(jié)果

JSONArray與List互轉(zhuǎn)

定義list集合,List轉(zhuǎn)型JSONArray

//定義list集合
List<Student> list = new ArrayList<Student>();
list.add(new Student("張三", "123"));
list.add(new Student("李四", "456"));
//List轉(zhuǎn)型JSONArray
JSONArray jsonArray = JSONArray.fromObject(list);
System.out.println(jsonArray.toString());

JSONArray轉(zhuǎn)型List,JSONArray是用的上面的那個(gè)jsonArray變量

//JSONArray轉(zhuǎn)型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);
}

全部代碼

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
 
import net.sf.json.JSONArray;
import net.sf.json.JsonConfig;
 
public class Json {
	public static void main(String[] args) {
		//定義list集合
		List<Student> list = new ArrayList<Student>();
		list.add(new Student("張三", "123"));
		list.add(new Student("李四", "456"));
		//List轉(zhuǎn)型JSONArray
		JSONArray jsonArray = JSONArray.fromObject(list);
		System.out.println(jsonArray.toString());
		
		//JSONArray轉(zhuǎn)型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);
		}
	}
}

運(yùn)行結(jié)果

JSONArray與數(shù)組互轉(zhuǎn)

定義數(shù)組,數(shù)組轉(zhuǎn)JSONArray

//定義數(shù)組
boolean[] boolArray = {true, false, true};
//java數(shù)組轉(zhuǎn)JSONArray
JSONArray jsonArray = JSONArray.fromObject(boolArray);
System.out.println(jsonArray.toString());

JSONArray轉(zhuǎn)java數(shù)組

//JSONArray轉(zhuǎn)java數(shù)組
Object obj[] = jsonArray.toArray();
for(Object o : obj) {
	System.out.print(o+"\t");
}

全部代碼

import net.sf.json.JSONArray;
 
public class Json {
	public static void main(String[] args) {
		//定義數(shù)組
		boolean[] boolArray = {true, false, true};
		//java數(shù)組轉(zhuǎn)JSONArray
		JSONArray jsonArray = JSONArray.fromObject(boolArray);
		System.out.println(jsonArray.toString());
		
		//JSONArray轉(zhuǎn)java數(shù)組
		Object obj[] = jsonArray.toArray();
		for(Object o : obj) {
			System.out.print(o+"\t");
		}
	}
}

運(yùn)行結(jié)果

PS:關(guān)于json操作,這里再為大家推薦幾款比較實(shí)用的json在線工具供大家參考使用:

在線JSON代碼檢驗(yàn)、檢驗(yàn)、美化、格式化工具:
http://tools.jb51.net/code/json

JSON在線格式化工具:
http://tools.jb51.net/code/jsonformat

在線XML/JSON互相轉(zhuǎn)換工具:
http://tools.jb51.net/code/xmljson

json代碼在線格式化/美化/壓縮/編輯/轉(zhuǎn)換工具:
http://tools.jb51.net/code/jsoncodeformat

在線json壓縮/轉(zhuǎn)義工具:
http://tools.jb51.net/code/json_yasuo_trans

更多關(guān)于java相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Java操作json格式數(shù)據(jù)技巧總結(jié)》、《Java數(shù)組操作技巧總結(jié)》、《Java字符與字符串操作技巧總結(jié)》、《Java數(shù)學(xué)運(yùn)算技巧總結(jié)》、《Java數(shù)據(jù)結(jié)構(gòu)與算法教程》及《Java操作DOM節(jié)點(diǎn)技巧總結(jié)

希望本文所述對(duì)大家java程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • Java如何重寫object類的equals方法詳解

    Java如何重寫object類的equals方法詳解

    這篇文章主要給大家介紹了關(guān)于Java如何重寫object類的equals方法的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-12-12
  • Mybatis返回Map對(duì)象的實(shí)現(xiàn)

    Mybatis返回Map對(duì)象的實(shí)現(xiàn)

    本文介紹了Mybatis和MybatisPlus在查詢數(shù)據(jù)庫(kù)時(shí)返回Map對(duì)象的多種實(shí)現(xiàn)方式,這些方法有助于優(yōu)化DAO層代碼,使其更加清晰和高效,下面就來具體介紹一下,感興趣的可以了解一下
    2024-09-09
  • jeefast和Mybatis實(shí)現(xiàn)三級(jí)聯(lián)動(dòng)的示例代碼

    jeefast和Mybatis實(shí)現(xiàn)三級(jí)聯(lián)動(dòng)的示例代碼

    這篇文章主要介紹了jeefast和Mybatis實(shí)現(xiàn)三級(jí)聯(lián)動(dòng)的示例代碼,代碼簡(jiǎn)單易懂,對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-10-10
  • 如何將maven項(xiàng)目劃分為多個(gè)模塊

    如何將maven項(xiàng)目劃分為多個(gè)模塊

    這篇文章主要介紹了如何將maven項(xiàng)目劃分為多個(gè)模塊,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2018-09-09
  • 詳解APP微信支付(java后臺(tái)_統(tǒng)一下單和回調(diào))

    詳解APP微信支付(java后臺(tái)_統(tǒng)一下單和回調(diào))

    這篇文章主要介紹了APP微信支付(java后臺(tái)_統(tǒng)一下單和回調(diào)),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-05-05
  • spring boot優(yōu)雅集成redisson詳解

    spring boot優(yōu)雅集成redisson詳解

    這篇文章主要為大家介紹了spring boot優(yōu)雅集成redisson詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11
  • vue驗(yàn)證碼組件應(yīng)用實(shí)例

    vue驗(yàn)證碼組件應(yīng)用實(shí)例

    今天小編就為大家分享一篇關(guān)于vue驗(yàn)證碼組件應(yīng)用實(shí)例,小編覺得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧
    2019-01-01
  • Java 中 Date 與 Calendar 之間的編輯與轉(zhuǎn)換實(shí)例詳解

    Java 中 Date 與 Calendar 之間的編輯與轉(zhuǎn)換實(shí)例詳解

    這篇文章主要介紹了Java 中 Date 與 Calendar 之間的編輯與轉(zhuǎn)換 ,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2018-07-07
  • SpringBoot Entity中枚舉類型詳細(xì)使用介紹

    SpringBoot Entity中枚舉類型詳細(xì)使用介紹

    本文介紹SpringBoot如何在Entity(DAO)中使用枚舉類型。(本文使用MyBatis-Plus)。在實(shí)際開發(fā)中,經(jīng)常會(huì)遇到表示類型或者狀態(tài)的情況,比如:有三種支付方式:微信、支付寶、銀聯(lián)。本文介紹如何這種場(chǎng)景的方案對(duì)比,并用實(shí)例來介紹如何用枚舉這種最優(yōu)雅的來表示
    2022-10-10
  • java7 新I/O知識(shí)點(diǎn)詳解

    java7 新I/O知識(shí)點(diǎn)詳解

    在本篇文章里小編給大家整理的是關(guān)于java7 新I/O知識(shí)點(diǎn)詳解,有需要的朋友們可以學(xué)習(xí)下。
    2019-11-11

最新評(píng)論