1. 程式人生 > >java 中JSON的構造和解析

java 中JSON的構造和解析

什麼是 Json?
  JSON(JvaScript Object Notation)(官網網站:http://www.json.org/)是 一種輕量級的資料交換格式。 
  易於人閱讀和編寫。同時也易於機器解析和生成。它基於 JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999 的一個子集。 
  JSON 採用完全獨立於語言的文字格式,但是也使用了類似於 C 語言家族的習慣(包括C, C++, C#, Java, JavaScript, Perl, Python等)。 這些特性使 JSON 成為理想的資料交換語言。

JSON 的兩種結構

1、“鍵/值”對的集合

不同的語言中,它被理解為物件(object),紀錄(record),結構(struct),字典(dictionary),雜湊表 (hash table),有鍵列表(keyed list),或者關聯陣列 (associative array)。 
  在 Java 語言中,我們可以將它理解成 HashMap。
  物件是一個無序的"'名稱/值'對"集合。一個物件以"{"(左括號)開始,"}"(右括號)結束。每個“名稱”後跟一個":"(冒號);"'名稱/值' 對"之間使用","(逗號)分隔。
  示例:var json = {"name":"Jack","age":90,"Marray":true};

  

2. 值的有序列表(An ordered list of values)。

在大部分語言中,它被理解為陣列(Array 或 List)。
  陣列是值(value)的有序集合。一個數組以"["(左中括號)開始,"]"(右中括號)結束。值之間使用","(逗號)分隔。
  示例:var json = ["Jack","Rose","Tom",89,true,false];

   

Java中對json的操作常用的方式有兩種:org.json.jar 和 json-lib.jar

一、使用org.json.jar(下載)

   

Java中對json的操作常用的方式有兩種:org.json.jar 和 json-lib.jar

一、使用org.json.jar(下載)

   

import java.util.ArrayList;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONObject;
import com.kevin.paper.entity.PubPaper;
import com.kevin.paper.entity.PubPaperAuthor;

public class Test {
    public String jsonConstruct(){  
        JSONObject json=new JSONObject();
        json.put("Article_id", "66496");
        json.put("Title", "Exploring the beta quadrant");
        json.put("Author", "Pietarinen, Ahti-Veikko");
        json.put("Journal", "SYNTHESE");
        json.put("ISSN", "0039-7857");
        json.put("PublishDate", "2015-04-01");
        json.put("Pages", "941-970");
        json.put("SCI", "true");
        json.put("EI", "false");
        json.put("SSCI", "true");
        //巢狀json
        JSONArray jsonMembers = new JSONArray();
        JSONObject author1 = new JSONObject();  
        author1.put("ZZGH", "150026");  
        author1.put("ZZXM", "AHTI-VEIKKO PIETARINEN");  
        author1.put("SFDYZZ","1");  
        author1.put("SFTXZZ", "1");  
        jsonMembers.put(author1);  
        json.put("Authors", jsonMembers);  
      
        return json.toString();  
    }
    
    public PubPaper jsonAnalysis(){
        PubPaper pubPaper = new PubPaper();
        String jsonData="{\"Article_id\":66496,\"Title\":\"Exploring the beta quadrant\",\"Author\":\"Pietarinen, Ahti-Veikko\"," +
                "\"Journal\":\"SYNTHESE\",\"ISSN\":\"0039-7857\",\"PublishDate\":\"2015-04-01\",\"Pages\":\"941-970\"," +
                "\"SCI\":\"true\",\"EI\":\"false\",\"SSCI\":\"true\"," +
                "\"Authors\":[{\"ZZGH\":\"150026\",\"ZZXM\":\"AHTI-VEIKKO PIETARINEN\",\"SFDYZZ\":1,\"SFTXZZ\":1}]}";  
        JSONObject json= new JSONObject(jsonData);
        pubPaper.setArticle_id(json.get("Article_id").toString());
        pubPaper.setTitle(json.get("Title").toString());
        pubPaper.setAuthor(json.get("Author").toString());
        pubPaper.setJournal(json.get("Journal").toString());
        pubPaper.setISSN(json.get("ISSN").toString());
        pubPaper.setPublishDate(json.get("PublishDate").toString());
        pubPaper.setPages(json.get("Pages").toString());
        pubPaper.setSCI(json.get("SCI").toString());
        pubPaper.setEI(json.get("EI").toString());
        pubPaper.setSSCI(json.get("SSCI").toString());
        //解析巢狀的json轉換成物件集合
        List<PubPaperAuthor> pubAuthorList = new ArrayList();
        JSONArray jsonArray=json.getJSONArray("Authors");  
        for(int i=0;i<jsonArray.length();i++){  
            JSONObject author=(JSONObject) jsonArray.getJSONObject(i);
            PubPaperAuthor pubPaperAuthor = new PubPaperAuthor();
            pubPaperAuthor.setZZGH(author.get("ZZGH").toString());
            pubPaperAuthor.setZZXM(author.get("ZZXM").toString());
            pubPaperAuthor.setSFDYZZ(author.get("SFDYZZ").toString());
            pubPaperAuthor.setSFTXZZ(author.get("SFTXZZ").toString());
            pubAuthorList.add(pubPaperAuthor);
        }
        pubPaper.setAuthors(pubAuthorList);
        return pubPaper;  
    }  
}

 

 

二、使用json-lib(下載)

json-lib 是一個 Java 類庫(官網:http://json-lib.sourceforge.net/)可以實現如下功能:

  轉換 javabeans, maps, collections, java arrays 和 XML 成為 json 格式資料
  轉換 json 格式資料成為 javabeans 物件
  Json-lib 需要的 jar 包:

    commons-beanutils-1.8.3.jar
    commons-collections-3.2.1.jar
    commons-lang-2.6.jar
    commons-logging-1.1.1.jar
    ezmorph-1.0.6.jar
    json-lib-2.4-jdk15.jar

 

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import com.kevin.person.entity.Person;

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;

public class Test {
    /** 將 Array 解析成 Json 串。使用 JSONArray 可以解析 Array 型別 */
    public void arrayToJSON() {
        // 將 Array 解析成 Json 串
        String[] str = { "Jack", "Tom", "90", "true" };
        JSONArray json = JSONArray.fromObject(str);
        System.err.println(json);// ["Jack","Tom","90","true"]

        // 對像陣列,注意數字和布而值
        Object[] o = { "北京", "上海", 89, true, 90.87 };
        json = JSONArray.fromObject(o);
        System.err.println(json);// ["北京","上海",89,true,90.87]

        // 使用集合類
        List<String> list = new ArrayList<String>();
        list.add("Jack");
        list.add("Rose");
        json = JSONArray.fromObject(list);
        System.err.println(json);// ["Jack","Rose"]

        // 使用 set 集
        Set<Object> set = new HashSet<Object>();
        set.add("Hello");
        set.add(true);
        set.add(99);
        json = JSONArray.fromObject(set);
        System.err.println(json);// [99,true,"Hello"]
    }

    /** 將 JavaBean/Map 解析成 JSON 串。 使用JSONObject 解析 */
    public void javaBeanOrMapToJSON() {
        JSONObject jsonObject = new JSONObject();
        // 解析 HashMap
        Map<String, Object> map = new HashMap<String, Object>();
        map.put("name", "Tom");
        map.put("age", 33);
        // 解析 JavaBean
        Person person = new Person("A001", "Jack");
        // jsonObject = jsonObject.fromObject(person);
        // 解析巢狀的物件
        map.put("person", person);
        jsonObject = JSONObject.fromObject(map);
        System.out.println(jsonObject);// {"person":{"id":"A001","name":"Jack"},"age":33,"name":"Tom"}
    }

    /** 使用 JsonConfig 過慮屬性:適用於 JavaBean/Map */
    public void jsonConfigForJavaBeanOrMap() {
        JsonConfig config = new JsonConfig();
        config.setExcludes(new String[] { "name" });// 指定在轉換時不包含哪些屬性
        Person person = new Person("A001", "Jack");
        JSONObject jsonObject = JSONObject.fromObject(person, config);// 在轉換時傳入之前的配置物件
        System.out.println(jsonObject);// {"id":"A001"}
    }

    /** 將 Json 串轉換成 Array */
    public void jsonToArray() {
        JSONArray jsonArray = JSONArray.fromObject("[89,90,99]");
        Object array = JSONArray.toArray(jsonArray);
        System.out.println(array);// [Ljava.lang.Object;@1e5003f6
        System.out.println(Arrays.asList((Object[]) array));// [89, 90, 99]
    }

    /** 將 Json 串轉成 JavaBean/Map */
    public void jsonToJavaBeanOrMap() {
        // 將 Json 形式的字串轉換為 Map
        String str = "{\"name\":\"Tom\",\"age\":90}";
        JSONObject jsonObject = JSONObject.fromObject(str);
        Map<String, Object> map = (Map<String, Object>) JSONObject.toBean(jsonObject, Map.class);
        System.out.println(map);// {age=90, name=Tom}

        // 將 Json 形式的字串轉換為 JavaBean
        str = "{\"id\":\"A001\",\"name\":\"Jack\"}";
        jsonObject = JSONObject.fromObject(str);
        System.out.println(jsonObject);
        Person person = (Person) JSONObject.toBean(jsonObject, Person.class);
        System.out.println(person);// Person [id=A001, name=Jack]
    }
}