FastJson 之 JSONPath的使用
转载自: https://springboot.io/t/topic/309 叙述 jsonpath,类似于xpath。都是通过一种字符串表达式,来快捷检索json里面的数据。在非常复杂的json结构中,对于一些获取和判断操作,不需要层层的去get。可以通过简洁的JsonPath表达式获取到结果。 解析 JSONPath 构造方法 public JSONPath(String path) public JSONPath(String path, SerializeConfig serializeConfig, ParserConfig parserConfig) 静态属性/方法 public static Object eval(Object rootObject, String path) public static Object extract(String json, String path, ParserConfig config, int features, Feature... optionFeatures) public static Object extract(String json, String path) * 根据path检索值 * extract,按需计算, 性能会更好 public static int size(Object rootObject,