中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JSON和Javabean如何實現互轉

發布時間:2022-02-19 15:40:10 來源:億速云 閱讀:339 作者:iii 欄目:開發技術

這篇文章主要介紹“JSON和Javabean如何實現互轉”,在日常操作中,相信很多人在JSON和Javabean如何實現互轉問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”JSON和Javabean如何實現互轉”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

JSONObject 與 JSONArray區別

JSONObject:

{
	"area": "武漢",
	"name": "張三",
	"age": 25
	}

JSONArray:

[{
		“area”: “武漢”,
		“name”: “張三”,
		“age”: 25
		},
		{
		“area”: “深圳”,
		“name”: “李四”,
		“age”: 22
		}]

通俗來講 JSONObject 是對象的json形式 JSONArry 是對象集合的JSON形式。

JSON 與javabean互轉

JSON用阿里的fastjson 包

用例java對象

public class User {

 protected Long id;
 protected String account;
 protected String password;
 protected String name;
 protected boolean gender;
 protected String telephone;

 @Override
 public String toString() {
  return "User{" +
    "id=" + id +
    ", account='" + account + ''' +
    ", password='" + password + ''' +
    ", name='" + name + ''' +
    ", gender=" + gender +
    ", telephone='" + telephone + ''' +
    '}';
 }

 public boolean isGender() {
  return gender;
 }

 public void setGender(boolean gender) {
  this.gender = gender;
 }

 public String getTelephone() {
  return telephone;
 }

 public void setTelephone(String telephone) {
  this.telephone = telephone;
 }

 public String getName() {
  return name;
 }

 public void setName(String name) {
  this.name = name;
 }

 public Long getId() {
  return id;
 }

 public void setId(Long id) {
  this.id = id;
 }

 public String getAccount() {
  return account;
 }

 public void setAccount(String account) {
  this.account = account;
 }

 public String getPassword() {
  return password;
 }

 public void setPassword(String password) {
  this.password = password;
 }
}

1、javabean轉json

方法一:通過java對象轉成String再轉成JSONObject

package com.handoop.gms.utils;

import com.alibaba.fastjson.JSONObject;
import com.handoop.gms.domain.User;

public class TestMain {
 public static void main(String []args){
  //先通過構造函數初始化一個對象
  User user=new User((long) 1,"admin","admin","張三",true,"123456");
  //先將java對象轉為String類型
  String jsonString= JSONObject.toJSONString(user);
  //再將String類型轉為JSONObject
  JSONObject jsonObject=JSONObject.parseObject(jsonString);
  System.out.println(jsonObject);
  //轉為JSONObject后就可以隨時根據鍵值獲取他的元素了
  System.out.println(jsonObject.get("password"));

 }
}

方法2:java對象直接轉json

package com.handoop.gms.utils;

import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.handoop.gms.domain.User;

public class TestMain {
 public static void main(String []args){
  //先通過構造函數初始化一個對象
  User user=new User((long) 1,"admin","admin","張三",true,"123456");
  JSONObject jsonObject= (JSONObject) JSONObject.toJSON(user);
  System.out.println(jsonObject);
 }
}

json字符串轉JSONObeject

public class TestMain {
 public static void main(String []args){
  String str="{"password":"admin","gender":true,"name":"張三","telephone":"123456","id":1,"account":"admin"}";
  JSONObject jsonObject=JSONObject.parseObject(str);
  System.out.println("account: "+jsonObject.get("account")+"---"+"paasword: "+jsonObject.get("password"));
 }
}

3.jsonString 轉JSONArray

public class TestMain {
 public static void main(String []args){

  String str="{"data":[{"password":"admin","gender":true,"name":"張三","telephone":"123456","id":1,"account":"admin"}]}";
  //先轉成JSONObject
  JSONObject jsonObject=JSONObject.parseObject(str);
  //再將JSONObject中數組類型數據取出轉成JSONArray
  JSONArray jsonArray=jsonObject.getJSONArray("data");
  System.out.println(jsonArray.get(0));
 }
}

4.JSON字符串轉JAVA對象

   String str="{"password":"admin","gender":true,"name":"張三","telephone":"123456","id":1,"account":"admin"}";
   // 前面是JSON字符串 后面是java對象類型
   User user=JSONObject.parseObject(str,User.class);
   System.out.println("account: "+user.getAccount()+"---"+"paasword: "+user.getPassword());

到此,關于“JSON和Javabean如何實現互轉”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大荔县| 阜新| 健康| 安阳县| 濉溪县| 泌阳县| 衡阳县| 凉城县| 平武县| 望奎县| 加查县| 视频| 当涂县| 石泉县| 洮南市| 禹州市| 北川| 丰原市| 云和县| 揭阳市| 化州市| 望谟县| 武鸣县| 江永县| 漳州市| 盐山县| 东辽县| 佳木斯市| 广宗县| 阿图什市| 彭水| 揭西县| 浦东新区| 西畴县| 清流县| 凌海市| 水城县| 公主岭市| 昂仁县| 宁城县| 临颍县|