我最近开始与Rest Assured一起为新项目测试API。我不太熟练使用Java,所以这就是为什么我需要知道如何优化代码的原因。
假设我有一个API,该API以这种格式输出JSON-
{
"records":[
0: {
"id" : 1232,
"attribute1": "some_value",
"attribute2": "some_value1"
},
1: {
"id" : 1233,
"attribute1": "some_new_value",
"attribute2": "some_new_value1"
}]}
records
数组中大约有400个这样的对象。我想获取所有400条记录中的id
,并存储在一个数组中。我可以这样做,但是我认为可以优化这种方法。
我当前的代码:
private static Response response;
Response r;
JSONParser parser = new JSONParser();
String resp = response.asString();
JSONObject json = (JSONObject) parser.parse(resp);
JSONArray records= ((JSONArray)json.get("records"));
ArrayList<Long> idlist = new ArrayList<Long>();
for(int i=0;i<records.size();i++) {
idlist.add((Long) ((JSONObject)records.get(i)).get("id"));
}
如何最小化代码行以实现同一目的?
答案 0 :(得分:2)
Response response
// Code that assigns the response
List<Long> idList = response.jsonPath().getList("records.id");
// Code that uses the id list.