com.alibaba.fastjson.JSONObject


package com.alibaba.fastjson;

import java.util.Date;
import java.util.List;

import com.alibaba.fastjson.componet.Grade;
import com.alibaba.fastjson.componet.User;
import com.alibaba.fastjson.serializer.SerializerFeature;

/**
 * @author Liang
 *
 *         2017年2月27日
 */
public class JSONObject_ {

    public static void main(String[] args) {
        User lime = new User(1, "lime", 23d);
        User oracle = new User(2, "oracle", 25d);
        Grade grade = new Grade("鈴蘭一中", lime, oracle);

        // 將JavaBean序列化為JSON文本
        String limeJson = JSONObject.toJSONString(lime);
//        {"id":1,"name":"lime","treasure":23}
        String usersJson = JSONObject.toJSONString(grade.getUsers());
//        [{"id":1,"name":"lime","treasure":23},{"id":2,"name":"oracle","treasure":25}]
        String gradeJson = JSONObject.toJSONString(grade);
//        {"name":"鈴蘭一中","users":[{"id":1,"name":"lime","treasure":23},{"id":2,"name":"oracle","treasure":25}]}

        // JSONObject 其實就是一個Map。
        JSONObject limeParse = JSONObject.parseObject(limeJson);
        System.out.println(limeParse);
//        {"id":1,"name":"lime","treasure":23}
        System.out.println(limeParse.getInteger("id"));
//        1
        System.out.println(limeParse.getIntValue("id"));
//        1
        System.out.println(limeParse.getString("name"));
//        lime

        JSONObject gradeParse = JSONObject.parseObject(gradeJson);
        System.out.println(gradeParse);
//        {"name":"鈴蘭一中","users":[{"id":1,"name":"lime","treasure":23},{"id":2,"name":"oracle","treasure":25}]}
        System.out.println(gradeParse.get("users"));
//        [{"id":1,"name":"lime","treasure":23},{"id":2,"name":"oracle","treasure":25}]

        // JSONArray 其實就是一個List
        List<User> gradeUsersParse = JSONObject.parseArray(gradeParse.get("users").toString(), User.class);
        for(User user : gradeUsersParse){
            System.out.println(user);
            // User [id=1, name=lime, treasure=23.0]
            // User [id=2, name=oracle, treasure=25.0]
        }

//        key-value使用單引號
        String limeJSON = JSONObject.toJSONString(lime,
                SerializerFeature.UseSingleQuotes);
//        {'id':1,'name':'lime','treasure':23}

        // 日期格式化
        Date date = new Date();
        // 默認格式為yyyy-MM-dd HH:mm:ss
        System.out.println(JSON.toJSONString(date,
                SerializerFeature.WriteDateUseDateFormat));
        //根據自定義格式輸出日期 
        System.out.println(JSON.toJSONStringWithDateFormat(date, "yyyy-MM-dd", SerializerFeature.WriteDateUseDateFormat));
    }
}

啦啦啦


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM