Package com.alibaba.json.demo

Source Code of com.alibaba.json.demo.Demo1

package com.alibaba.json.demo;

import java.math.BigDecimal;

import junit.framework.TestCase;

import com.alibaba.fastjson.JSONObject;

public class Demo1 extends TestCase {

    public void test_0() throws Exception {
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("name", "Jobs");
        jsonObject.put("age", 50);
        jsonObject.put("salary", new BigDecimal(8000));

        String text = jsonObject.toJSONString();
        System.out.println(text);
    }
}
TOP

Related Classes of com.alibaba.json.demo.Demo1

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.