美文网首页
fastjson之JSONPath

fastjson之JSONPath

作者: 爱的旋转体 | 来源:发表于2023-03-03 16:08 被阅读0次

    json-path不能为空,json字符串也不能为空

    1、json字符串中没有所要的字段,返回null

    JSONArray jsonArray = JSONPath.compile("$.user.address").eval("{\"user\":{}}", JSONArray.class);
    System.out.println(jsonArray);
    
    image.png

    2、json字符串中有所要的字段

    JSONArray jsonArray = JSONPath.compile("$.user.address").eval("{\"user\":{\"address\":[]}}", JSONArray.class);
    System.out.println(jsonArray);
    
    image.png

    相关文章

      网友评论

          本文标题:fastjson之JSONPath

          本文链接:https://www.haomeiwen.com/subject/eateldtx.html