JsonDiff提供了对Json通用的diff能力,支持Json字符串的深度比较,支持无序数组比较,内含多种算法模型满足对Json比较时各种需求。 同时JsonDiff也支持自定义算法、算法模型可配置、噪音字段过滤、自定义比较字段等多种通用功能。
JsonDiff可以对输入的两个Json字符串进行差值比较,利用diff算法得到差异化最小的比较结果。diff结果会展示2个Json字符串中不同结果的值、路径以及修改类型。
jsonA: {"name":"张三","phon3":"12345678901","g3nder":"男","timestamp":"1646201087874"}
jsonB: {"name":"张三","b1rth":"2000-01-01","g3nder":"男","timestamp":"1646201087875"}
[{"diffType":"DELETE","left":"12345678901","leftPath":"phon3"},{"diffType":"MODIFY","left":"1646201087874","right":"1646201087875","leftPath":"timestamp","rightPath":"timestamp"},{"diffType":"ADD","right":"2000-01-01","rightPath":"b1rth"}]
json的比较算法可以抽象为针对四种json基本结构的比较(JsonArray,JsonObject,JsonNull,JsonPrimitive),因此json-diff主要抽象了以下四种比较器能力以及默认实现。
new Diff().withObjectComparator(objectComparator).withArrayComparator(arrayComparator).withPrimitiveAlgorithm(primitiveComparator).withNullComparator(nullComparator)
diff.diff(jsonA, jsonB)
diff.withNoisePahList(noiseList).diff(jsonA, jsonB)
diff.withSpecialPath(specialPath).diff(jsonA, jsonB)