真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java對象與json對象之間互相轉(zhuǎn)換實現(xiàn)方法示例

本文實例講述了java對象與json對象之間互相轉(zhuǎn)換實現(xiàn)方法。分享給大家供大家參考,具體如下:

創(chuàng)新互聯(lián)公司是一家企業(yè)級云計算解決方案提供商,超15年IDC數(shù)據(jù)中心運營經(jīng)驗。主營GPU顯卡服務器,站群服務器,成都IDC機房托管,海外高防服務器,服務器機柜,動態(tài)撥號VPS,海外云手機,海外云服務器,海外服務器租用托管等。

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
public class MainClass {
  public static void main(String[] args) {
    TestJsonBean();
    TestJsonAttribute();
    TestJsonArray();
  }
  @SuppressWarnings("rawtypes")
  private static void TestJsonArray() {
    Student student1 = new Student();
    student1.setId(1);
    student1.setName("jag");
    student1.setSex("man");
    student1.setAge(25);
    student1.setHobby(new String[]{"籃球","游戲"});
    Student student2 = new Student();
    student2.setId(2);
    student2.setName("tom");
    student2.setSex("woman");
    student2.setAge(23);
    student2.setHobby(new String[]{"上網(wǎng)","跑步"});
    List list = new ArrayList();
    list.add(student1);
    list.add(student2);
    JSONArray jsonArray = JSONArray.fromObject(list);
    System.out.println(jsonArray.toString());
    JSONArray new_jsonArray=JSONArray.fromObject(jsonArray.toArray());
    Collection java_collection=JSONArray.toCollection(new_jsonArray);
    if(java_collection!=null && !java_collection.isEmpty())
    {
      Iterator it=java_collection.iterator();
      while(it.hasNext())
      {
        JSONObject jsonObj=JSONObject.fromObject(it.next());
        Student stu=(Student) JSONObject.toBean(jsonObj,Student.class);
        System.out.println(stu.getName());
      }
    }
  }
  private static void TestJsonAttribute() {
    /**
     * 創(chuàng)建json對象并為該對象設置屬性
     */
    JSONObject jsonObj = new JSONObject();
    jsonObj.put("Int_att",25);//添加int型屬性
    jsonObj.put("String_att","str");//添加string型屬性
    jsonObj.put("Double_att",12.25);//添加double型屬性
    jsonObj.put("Boolean_att",true);//添加boolean型屬性
    //添加JSONObject型屬性
    JSONObject jsonObjSon = new JSONObject();
    jsonObjSon.put("id", 1);
    jsonObjSon.put("name", "tom");
    jsonObj.put("JSONObject_att",jsonObjSon);
    //添加JSONArray型屬性
    JSONArray jsonArray = new JSONArray();
    jsonArray.add("array0");
    jsonArray.add("array1");
    jsonArray.add("array2");
    jsonArray.add("array3");
    jsonObj.put("JSONArray_att", jsonArray);
    System.out.println(jsonObj.toString());
    System.out.println("Int_att:"+jsonObj.getInt("Int_att"));
    System.out.println("String_att:"+jsonObj.getString("String_att"));
    System.out.println("Double_att:"+jsonObj.getDouble("Double_att"));
    System.out.println("Boolean_att:"+jsonObj.getBoolean("Boolean_att"));
    System.out.println("JSONObject_att:"+jsonObj.getJSONObject("JSONObject_att"));
    System.out.println("JSONArray_att:"+jsonObj.getJSONArray("JSONArray_att"));
  }
  /**
   * java對象與json對象互相轉(zhuǎn)換
   */
  private static void TestJsonBean() {
    /**
     * 創(chuàng)建java對象
     */
    Student student = new Student();
    student.setId(1);
    student.setName("jag");
    student.setSex("man");
    student.setAge(25);
    student.setHobby(new String[]{"籃球","上網(wǎng)","跑步","游戲"});
    /**
     * java對象轉(zhuǎn)換成json對象,并獲取json對象屬性
     */
    JSONObject jsonStu = JSONObject.fromObject(student);
    System.out.println(jsonStu.toString());
    System.out.println(jsonStu.getJSONArray("hobby"));
    /**
     * json對象轉(zhuǎn)換成java對象,并獲取java對象屬性
     */
    Student stu = (Student) JSONObject.toBean(jsonStu, Student.class);
    System.out.println(stu.getName());
    /**
     * 創(chuàng)建json對象
     */
    JSONObject jsonObj = new JSONObject();
    jsonObj.put("id",1);
    jsonObj.put("name","張勇");
    jsonObj.put("sex","男");
    jsonObj.put("age",24);
    //jsonObj.put("hobby",new String[]{"上網(wǎng)","游戲","跑步","音樂"});
    //System.out.println(jsonObj.toString());
    /**
     * json對象轉(zhuǎn)換成java對象
     */
    Student stud = (Student) JSONObject.toBean(jsonObj,Student.class);
    System.out.println(stud.getName());
  }
}

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

在線JSON代碼檢驗、檢驗、美化、格式化工具:
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ù)學運算技巧總結(jié)》、《Java數(shù)據(jù)結(jié)構(gòu)與算法教程》及《Java操作DOM節(jié)點技巧總結(jié)》

希望本文所述對大家java程序設計有所幫助。


網(wǎng)站標題:java對象與json對象之間互相轉(zhuǎn)換實現(xiàn)方法示例
轉(zhuǎn)載來源:http://weahome.cn/article/jceejs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部