2、list和json字符串的互轉html
list--》》json字符串java
public static void listToJSON(){ Student stu=new Student(); stu.setName("JSON"); stu.setAge("23"); stu.setAddress("北京市海淀區"); List<Student> lists=new ArrayList<Student>(); lists.add(stu); //一、使用JSONObject //JSONObject listObject=JSONObject.fromObject(lists); //二、使用JSONArray JSONArray listArray=JSONArray.fromObject(lists); //System.out.println("listObject:"+listObject.toString()); System.out.println("listArray:"+listArray.toString()); }
我把使用JSONObject的方式給注掉了,咱們先看註釋以前的結果,json
Exception in thread "main" net.sf.json.JSONException: 'object' is an array. Use JSONArray instead
告訴我說有一個異常,經過查看源碼發現,在使用fromObject方法的時候會先進行參數類型的判斷,這裏就告訴咱們,傳入的參數是一個array類型,由於使用的ArrayList,再來看,註釋以後的結果,數組
listArray:[{"address":"北京市海淀區","age":"23","name":"JSON"}]
這樣結果是正常的。this
json字符串--》》listspa
從上面的例子能夠看出list的對象只能轉化爲數組對象的格式,那麼咱們看下面的字符串到list的轉化,code
public static void jsonToList(){ String arrayStr="[{\"name\":\"JSON\",\"age\":\"24\",\"address\":\"北京市西城區\"}]"; //轉化爲list List<Student> list2=(List<Student>)JSONArray.toList(JSONArray.fromObject(arrayStr), Student.class); for (Student stu : list2) { System.out.println(stu); } //轉化爲數組 Student[] ss =(Student[])JSONArray.toArray(JSONArray.fromObject(arrayStr),Student.class); for (Student student : ss) { System.out.println(student); } }
打印結果,htm
Student [name=JSON, age=24, address=北京市西城區]對象
Student [name=JSON, age=24, address=北京市西城區]blog
因爲字符串的格式爲帶有「[]」的格式,因此這裏選擇JSONArray這個對象,它有toArray、toList方法可供使用,前者轉化爲 java中的數組,或者轉化爲java中的list,因爲這裏有實體類進行對應,因此在使用時指定了泛型的類型(Student.class),這樣就可 以獲得轉化後的對象。
3、map和json字符串的互轉
map--》》json字符串
public static void mapToJSON(){ Student stu=new Student(); stu.setName("JSON"); stu.setAge("23"); stu.setAddress("中國上海"); Map<String,Student> map=new HashMap<String,Student>(); map.put("first", stu); //一、JSONObject JSONObject mapObject=JSONObject.fromObject(map); System.out.println("mapObject"+mapObject.toString()); //二、JSONArray JSONArray mapArray=JSONArray.fromObject(map); System.out.println("mapArray:"+mapArray.toString()); }
打印結果,
mapObject{"first":{"address":"中國上海","age":"23","name":"JSON"}}
mapArray:[{"first":{"address":"中國上海","age":"23","name":"JSON"}}]
上面打印了兩種形式。
json字符串--》》map
JSON字符串不能直接轉化爲map對象,要想取得map中的鍵對應的值須要別的方式,
public static void jsonToMap(){ String strObject="{\"first\":{\"address\":\"中國上海\",\"age\":\"23\",\"name\":\"JSON\"}}"; //JSONObject JSONObject jsonObject=JSONObject.fromObject(strObject); Map map=new HashMap(); map.put("first", Student.class); //使用了toBean方法,須要三個參數 MyBean my=(MyBean)JSONObject.toBean(jsonObject, MyBean.class, map); System.out.println(my.getFirst()); }
打印結果,
Student [name=JSON, age=23, address=中國上海]
下面是MyBean的代碼,
package com.cn.study.day4; import java.util.Map; import com.cn.study.day3.Student; public class MyBean { private Student first; public Student getFirst() { return first; } public void setFirst(Student first) { this.first = first; } }
使用toBean()方法是傳入了三個參數,第一個是JSONObject對象,第二個是MyBean.class,第三個是一個Map對象。經過 MyBean能夠知道此類中要有一個first的屬性,且其類型爲Student,要和map中的鍵和值類型對應,即,first對應鍵 first類型對應值的類型。
以上所述是小編給你們介紹的JSON字符串與java對象的相互轉換實例詳解,但願對你們有所幫助!
原文連接:http://www.cnblogs.com/teach/archive/2016/08/20/5791029.html