Bootstrap

实现简单的 JSON 解析Java工具类 | Java & 反射

以前学习 Java 反射 API的时候,顺手写了一个简陋的 JSON 解析类,实现了 dumps() 和  loads() 方法,功能是把 Java Bean 解析成 JSON 字符串返回 和 把 JSON 字符串解析为 Java Bean 对象返回。

实现非常的简陋,目前支持的 JSON 数据类型只有 string | boolean | number | array ,暂不支持嵌套的 object;同样也没有特殊的异常处理。


先看看测试结果

测试

package minjson.test;

import minjson.util.JSON;

public class AnyTest {

    public static void main(String[] args){

        String json = "{" + 
                        "\"name\": \"Iphone11\"," + 
                        "\"price\": 6799.0," + 
                        "\"colors\": [\"黑色\", \"白色\", \"红色\", \"黄色\", \"紫色\", \"绿色\"]," + 
                        "\"ROM\": [64, 128, 256]," +
                        "\"OS\": \"IOS12\"," +
                        "\"slogan\": \"iPhone11,一切都刚刚好\" }";
        
        System.out.println("要被转换的json 数据如下 👇");
        System.out.println(json);

        Mobile mobile = JSON.loads(json, Mobile.class);
        System.out.println("调用 JSON.loads() 方法 转换得到的 Java Bean 如下 👇 ");
        System.out.println(mobile);
        // String[] colors = mobile.getColors();

        System.out.println("调用 JSON.dumps() 方法 把刚刚的 Java Bean 对象转换为 JSON 字符串结果 如下 👇 ");
        String mobileJson = JSON.dumps(mobile, true);
        System.out.println(mobileJson);

    }

}

其中用到的 Java Bean 类如下

package minjson.test;

import java.util.Arrays;

/**
 * 表示 智能手机 的 JavaBean😊
 */
public class Mobile {

    private String name; // 手机名字
    private Double price; // 起步价格
    private String[] colors; // 包含的颜色
    private Integer[] ROM; // 包含的内存大小
    private String OS; // 操作系统
    private String slogan; // 亮眼的广告文案

    public Mobile(){

    }
    
    public Mobile(String name, Double price, String[] colors, Integer[] ROM, String OS, String slogan) {
        this.name = name;
        this.price = price;
        this.colors = colors;
        this.ROM = ROM;
        this.OS = OS;
        this.slogan = slogan;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Double getPrice() {
        return price;
    }

    public void setPrice(Double price) {
        this.price = price;
    }

    public String[] getColors() {
        return colors;
    }

    public void setColors(String[] colors) {
        this.colors 

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;