這期內(nèi)容當中小編將會給大家?guī)碛嘘P如何在Java中經(jīng)json與javaBean進行轉(zhuǎn)換,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站建設、成都網(wǎng)站制作與策劃設計,平順網(wǎng)站建設哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設十余年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:平順等地區(qū)。平順做網(wǎng)站價格咨詢:13518219792
Java主要應用于:1. web開發(fā);2. Android開發(fā);3. 客戶端開發(fā);4. 網(wǎng)頁開發(fā);5. 企業(yè)級應用開發(fā);6. Java大數(shù)據(jù)開發(fā);7.游戲開發(fā)等。
一、java普通對象和json字符串的互轉(zhuǎn)
java對象---->json
首先創(chuàng)建一個java對象:
public class Student { //姓名 private String name; //年齡 private String age; //住址 private String address; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getAge() { return age; } public void setAge(String age) { this.age = age; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } @Override public String toString() { return "Student [name=" + name + ", age=" + age + ", address=" + address + "]"; } }
現(xiàn)在java對象轉(zhuǎn)換為json形式:
public static void convertObject() { Student stu=new Student(); stu.setName("JSON"); stu.setAge("23"); stu.setAddress("北京市西城區(qū)"); //1、使用JSONObject JSONObject json = JSONObject.fromObject(stu); //2、使用JSONArray JSONArray array=JSONArray.fromObject(stu); String strJson=json.toString(); String strArray=array.toString(); System.out.println("strJson:"+strJson); System.out.println("strArray:"+strArray); }
定義了一個Student的實體類,然后分別使用了JSONObject和JSONArray兩種方式轉(zhuǎn)化為JSON字符串,下面看打印的結(jié)果:
json-->javabean
上面說明了如何把java對象轉(zhuǎn)化為JSON字符串,下面看如何把JSON字符串格式轉(zhuǎn)化為java對象,
首先需要定義兩種不同格式的字符串,需要使用\對雙引號進行轉(zhuǎn)義。
public static void jsonStrToJava(){ //定義兩種不同格式的字符串 String objectStr="{\"name\":\"JSON\",\"age\":\"24\",\"address\":\"北京市西城區(qū)\"}"; String arrayStr="[{\"name\":\"JSON\",\"age\":\"24\",\"address\":\"北京市西城區(qū)\"}]"; //1、使用JSONObject JSONObject jsonObject=JSONObject.fromObject(objectStr); Student stu=(Student)JSONObject.toBean(jsonObject, Student.class); //2、使用JSONArray JSONArray jsonArray=JSONArray.fromObject(arrayStr); //獲得jsonArray的第一個元素 Object o=jsonArray.get(0); JSONObject jsonObject2=JSONObject.fromObject(o); Student stu2=(Student)JSONObject.toBean(jsonObject2, Student.class); System.out.println("stu:"+stu); System.out.println("stu2:"+stu2); }
運行結(jié)果:
從上面的代碼中可以看出,使用JSONObject可以輕松的把JSON格式的字符串轉(zhuǎn)化為java對象,但是使用JSONArray就沒那么容易了,因為它有“[]”符號,所以我們這里在獲得了JSONArray的對象之后,取其第一個元素即我們需要的一個student的變形,然后使用JSONObject輕松獲得。
二、list和json字符串的互轉(zhuǎn)
下面將list轉(zhuǎn)化為json字符串:
public static void convertListObject() { Student stu=new Student(); stu.setName("JSON"); stu.setAge("23"); stu.setAddress("北京市西城區(qū)"); Student stu2=new Student(); stu2.setName("JSON2"); stu2.setAge("23"); stu2.setAddress("北京市西城區(qū)"); //注意如果是list多個對象比需要使用JSONArray JSONArray array=JSONArray.fromObject(stu); String strArray=array.toString(); System.out.println("strArray:"+strArray); }
運行結(jié)果為:
strArray:[{"address":"北京市西城區(qū)","name":"JSON","age":"23"},{"address":"北京市西城區(qū)","name":"JSON2","age":"23"}]
如果使用JSONObject進行轉(zhuǎn)換會出現(xiàn):
Exception in thread "main" net.sf.json.JSONException: 'object' is an array. Use JSONArray instead
下面將json串轉(zhuǎn)換為list
public static void jsonToList(){ String arrayStr="[{\"name\":\"JSON\",\"age\":\"24\",\"address\":\"北京市西城區(qū)\"},{\"name\":\"JSON2\",\"age\":\"24\",\"address\":\"北京市西城區(qū)\"}]"; //轉(zhuǎn)化為list List<Student> list2=(List<Student>)JSONArray.toList(JSONArray.fromObject(arrayStr), Student.class); for (Student stu : list2) { System.out.println(stu); } //轉(zhuǎn)化為數(shù)組 Student[] ss =(Student[])JSONArray.toArray(JSONArray.fromObject(arrayStr),Student.class); for (Student student : ss) { System.out.println(student); } }
運行結(jié)果為:
三、map和json字符串的互轉(zhuǎn)
map轉(zhuǎn)化為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); //1、JSONObject JSONObject mapObject=JSONObject.fromObject(map); System.out.println("mapObject:"+mapObject.toString()); //2、JSONArray JSONArray mapArray=JSONArray.fromObject(map); System.out.println("mapArray:"+mapArray.toString()); }
運行結(jié)果:
json字符串轉(zhuǎn)化為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方法,需要三個參數(shù) MyBean my=(MyBean)JSONObject.toBean(jsonObject, MyBean.class, map); System.out.println(my.getFirst()); }
注意在轉(zhuǎn)化為map的時候需要創(chuàng)建一個類,類里面需要有first屬性跟json串里面的一樣:
使用toBean()
方法是傳入了三個參數(shù),第一個是JSONObject對象,第二個是MyBean.class,第三個是一個Map對象。通過MyBean可以知道此類中要有一個first的屬性,且其類型為Student,要和map中的鍵和值類型對應,即,first對應鍵 first類型對應值的類型。
運行結(jié)果:
上述就是小編為大家分享的如何在Java中經(jīng)json與javaBean進行轉(zhuǎn)換了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)站欄目:如何在Java中經(jīng)json與javaBean進行轉(zhuǎn)換
當前路徑:http://muchs.cn/article22/jooojc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設、虛擬主機、App設計、定制網(wǎng)站、Google、搜索引擎優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)