简体   繁体   中英

Rest assured extracting values in json response in java

How to extract names in the following response in rest assured using java?


{
  "type": "students",
  "values": [
    {
      "id": "123",
      "name": "Raj"
      
    },
    {
      "id": "456",
      "name": "Rahul"
     
    }
  ]
}

To get all names :

Response res = ...;
List<String> names = res.jsonPath().getList("values.name");
System.out.println(names); //[Raj, Rahul]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM