踩坑系列之--Fastjson JSONPath解析Boolean类型翻车了

时间:2025-04-01 12:41:03
public static void main(String[] args) { JSONObject sourceJson = JSON.parseObject("{\n" + "\t\"boolean1\":true,\n" + "\t\"boolean2\":false,\n" + "\t\"boolean3\":true,\n" + "\t\"boolean4\":true,\n" + "\t\"name\":\"str\",\n" + "\t\"name1\":\"str\"\n" + "}"); // 初始配置中,新增的字段添加的库中 Map<String, Object> paths = JSONPath.paths(sourceJson); System.out.println(JSON.toJSONString(paths)); JSONObject destJson = JSON.parseObject("{\n" + "\t\"boolean1\":true,\n" + "\t\"boolean2\":false,\n" + "\t\"name\":\"str\"\n" + "}"); for (Map.Entry<String, Object> stringObjectEntry : paths.entrySet()) { if(stringObjectEntry.getValue() instanceof JSONObject || stringObjectEntry.getValue() instanceof JSONArray){ continue; } if (!JSONPath.contains(destJson, stringObjectEntry.getKey())) { JSONPath.set(destJson, stringObjectEntry.getKey(), stringObjectEntry.getValue()); System.out.println("key=" + stringObjectEntry.getKey() + " ,value=" + stringObjectEntry.getValue()); } } System.out.println(destJson.toJSONString()); }