为了账号安全,请及时绑定邮箱和手机立即绑定

Gson 解析 JSON,如何要求所有 field 存在于 JSON 中?

Gson 解析 JSON,如何要求所有 field 存在于 JSON 中?

湖上湖 2019-03-13 18:14:02
例如我有一个类 class A { String a; String b; },我用 Gson 去解析一段 JSON { "b": "naive" } 可以得到一个 A 的实例,其 a 为 null。但我想要求目标类中所有 field 必须存在于 JSON 中,否则就抛出 JsonParseException。譬如这个例子中的 JSON 里没有 a 属性,就直接作为解析失败,抛异常,是否可能做到?貌似 Jackson 有 FAIL_ON_IGNORED_PROPERTIES 这个 flag 可以用。Gson 没有类似的东西么?
查看完整描述

3 回答

?
largeQ

TA贡献2039条经验 获得超7个赞

直接用反射检测json是否有该字段不就行了。


class A {

    String a;

    String b;

    List<B> list;

}


class B{...}


private static void checkJson(JSONObject json, Class<?> clazz) {

    Field[] fields = clazz.getDeclaredFields();


    for (Field field : fields) {

        if (!json.has(field.getName())) {

            throw new JsonParseException();

        }


        // 遍历数组

        Type type = field.getGenericType();


        if (type instanceof ParameterizedType) {

            Type[] types = ((ParameterizedType) type).getActualTypeArguments();

            Type t = types[0];


            JSONArray array = json.getJSONArray(field.getName());


            for (int i = 0; i < array.length(); i++) {

                Object childJSON = array.get(i);


                if (childJSON instanceof JSONObject) {

                    checkJson((JSONObject) childJSON, (Class) t);

                }

            }

        }

    }

}


public static void main(String[] args){

    A a = new A();

    ...

    String json = new Gson().toJson(a);

    checkJson(new JSONObject(json), A.class);

}


查看完整回答
反对 回复 2019-04-16
?
GCT1015

TA贡献1827条经验 获得超4个赞

貌似没找到,可以自己通过业务逻辑进行控制,在序列化之后得到的Object进行空判断即可


查看完整回答
反对 回复 2019-04-16
  • 3 回答
  • 0 关注
  • 710 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信