1. 程式人生 > >java JSON學習—List集合轉換成JSON物件

java JSON學習—List集合轉換成JSON物件

1. 簡單的手動放置 鍵值對 到JSONObject,然後在put到JSONArray物件裡

複製程式碼
List<Article> al = articleMng.find(f);
            System.out.println(al.size());
            HttpServletResponse hsr = ServletActionContext.getResponse();
            if(null == al){
                return ;
            }
            for(Article a : al){
                System.out.println(a.getId()
+a.getDescription()+a.getTitle()); } JSONArray json = new JSONArray(); for(Article a : al){ JSONObject jo = new JSONObject(); jo.put("id", a.getId()); jo.put("title", a.getTitle()); jo.put("desc", a.getDescription()); json.put(jo); }
try { System.out.println(json.toString()); hsr.setCharacterEncoding("UTF-8"); hsr.getWriter().write(json.toString()); } catch (IOException e) { e.printStackTrace(); }
複製程式碼

上述程式碼JSONArray是引入的org.json.JSONArray包

而用net.sf.json包下JSONArray的靜態方法:fromObject(list) 這是網上大多是都是直接用此方法快捷轉換JSON,但是對於Hibernate級聯操作關聯的物件,這個方法就會報錯,如果將對映檔案中的級聯配置去掉就行了。

另外對於list的要求就是其中的元素是字串或物件,否則JSON不知道你想要的是什麼資料。

<many-to-one name="cmsent" column="comment_tid" class="com.fcms.cms.entity.CmsComment" 
        not-null="false" cascade="delete">

但是級聯操作畢竟還是得存在,否則以後資料冗餘、多餘。

解決方法就是:JSONArray subMsgs = JSONArray.fromObject(object, config);

複製程式碼
JsonConfig config = new JsonConfig();
        config.setJsonPropertyFilter(new PropertyFilter() {
            public boolean apply(Object arg0, String arg1, Object arg2) {
                 if (arg1.equals("article") ||arg1.equals("fans")) {
                        return true;
                    } else {
                        return false;
                    }
            }
        });
複製程式碼

說明:提供了一個過濾作用,如果遇到關聯的物件時他會自動過濾掉,不去執行關聯關聯所關聯的物件。這裡我貼出我hibernate中的配置關係對映的程式碼幫助理解:

複製程式碼
<!-- 配置話題和團體之間的關係 -->
        <many-to-one name="article" class="com.fcms.nubb.article" column="article_id"/>
        
        <!-- 配置主題帖與回覆的帖子之間的關係 -->
        <set name="subMessages" table="sub_message" inverse="true" cascade="all" lazy="false" order-by="date asc">
            <key column="theme_id" />
            <one-to-many class="bbs.po.SubMessage" />
        </set>
複製程式碼

總結:

1. JSONArray subMsgs = JSONArray.fromObject(subMessages, config);其中config是可選的,當出現上面的情況是可以配置config引數,如果沒有上面的那種需求就可以直接使用fromObject(obj)方法,它轉換出來的就是標準的json物件格式的資料,如下:

{["attr", "content", ...}, ...]}

2. JSONObject jTmsg = JSONObject.fromObject(themeMessage, config);這是專門用來解析標準的pojo,或者map物件的,pojo物件的格式就不用說了,map的形式是這樣的{"str", "str"}。

-----------------------------------------------------------  分割 -------------------------------------------------------------------------------------------

 對於JSONArray和JSON之前用到想吐了!!!

但是,最近發現個好東西--fastjson (阿里巴巴溫少寫的一個將Object轉為json資料的工具包)

bean

複製程式碼
package com.nubb.bean;

import java.io.Serializable;

public class Person implements Serializable{
    private static final long serialVersionUID = 1L;
    private String name;
    private int age;
    private String address;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    public String getAddress() {
        return address;
    }
    public void setAddress(String address) {
        this.address = address;
    }
    
    
}
複製程式碼

JsonUtil

複製程式碼
package com.nubb.test;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.ArrayList;
import java.util.List;

import com.alibaba.fastjson.JSON;
import com.nubb.bean.Person;


public class JSONSerializer {
        private static final String DEFAULT_CHARSET_NAME = "UTF-8";

        public static <T> String serialize(T object) {
            return JSON.toJSONString(object);
        }

        public static <T> T deserialize(String string, Class<T> clz) {
            return JSON.parseObject(string, clz);
        }

        public static <T> T load(Path path, Class<T> clz) throws IOException {
            return deserialize(
                    new String(Files.readAllBytes(path), DEFAULT_CHARSET_NAME), clz);
        }

        public static <T> void save(Path path, T object) throws IOException {
            if (Files.notExists(path.getParent())) {
                Files.createDirectories(path.getParent());
            }
            Files.write(path,
                    serialize(object).getBytes(DEFAULT_CHARSET_NAME),
                    StandardOpenOption.WRITE,
                    StandardOpenOption.CREATE,
                    StandardOpenOption.TRUNCATE_EXISTING);
        }
        
        public static void main(String[] args) {
            Person person1 = new Person();
            person1.setAddress("address");
            person1.setAge(11);
            person1.setName("amao");
            
            Person person2 = new Person();
            person2.setAddress("address");
            person2.setAge(11);
            person2.setName("amao");
            
            List<Person> lp = new ArrayList<Person>();
            lp.add(person1);
            lp.add(person2);
            System.out.println(serialize(lp));
        }
        
}
複製程式碼

輸出:

[{"address":"address","age":11,"name":"amao"},{"address":"address","age":11,"name":"amao"}]