使用 foreach 循环的 RestAssured 解析 Json 数组响应
RestAssured Parsing Json Array Response using foreach loop
我收到了来自 RestAssured 的回复,这是一个 JsonArray 看起来类似于下面的代码
[{
"id": "1",
"applicationId": "ABC"
}, {
"id": "2",
"applicationId": "CDE"
}, {
"id": "3",
"applicationId": "XYZ"
}]
我使用代码从第一个 Json 元素中获取 "id"
List<String> jresponse = response.jsonPath().getList("$");
for (int i = 0; i < jsonResponse.size(); i++) {
String id = response.jsonPath().getString("id[" + i + "]");
if(id.equals("1"){
do something
}
else {
something else
}
}
有没有办法在上面的代码中使用 foreach 代替 for?
而不是像这样获取根级别:
List<String> jresponse = response.jsonPath().getList("$");
可以直接抢ID:
List<String> ids = path.getList("id");
然后,您可以使用 foreach 循环,而不是像这样使用索引:
List<String> ids = path.getList("id");
for (String id : ids) {
if (id.equals("1")) {
//do something
} else {
//do something else
}
}
编辑:
最好的方法(可能)是创建代表 JSON 的对象。
为此,我们必须了解 JSON 包含的内容。到目前为止,您有 JSON 个包含 JSON 个对象的数组。每个 JSON 个对象包含 id
和 applicationId
。为了将此 JSON 解析为 Java class,我们必须创建一个 class。我们称它为 Identity
。你可以随便叫它。
public class Identity {
public String id;
public String applicationId;
}
以上是JSON对象的表示。字段名称是 JSON 中的确切名称。标识符应为 public.
现在,要将 JSON 解析为 Java classes,我们可以像这样使用 JsonPath
:
Identity[] identities = path.getObject("$", Identity[].class);
然后,我们遍历数组得到我们想要的:
for (Identity identity : identities) {
if (identity.id.equals("1")) {
System.out.println(identity.applicationId);
}
}
基于此,您可以创建一个完整的方法,而不仅仅是像这样打印 applicationId
:
private static String getApplicationId(String id, Identity[] identities) {
for (Identity identity : identities) {
if (identity.id.equals(id)) {
return identity.applicationId;
}
}
throw new NoSuchElementException("Cannot find applicationId for id: " + id);
}
另一个编辑:
为了使用 foreach
并基于 id
获得 applicationID
,您需要使用 getList
方法,但方式不同。
List<HashMap<String, String>> responseMap = response.jsonPath().getList("$");
在上面的代码中,我们得到了 JSON 数组中 JSON 个对象的列表。
HashMap 中的每个元素都是一个 JSON 对象。字符串是 id
和 applicationId
等属性,第二个 String
是每个属性的值。
现在,我们可以像这样使用 foreach
循环来获得所需的结果:
private static String getApplicationIdBasedOnId(Response response, String id) {
List<HashMap<String, String>> responseMap = response.jsonPath().getList("$");
for (HashMap<String, String> singleObject : responseMap) {
if (singleObject.get("id").equals(id)) {
return singleObject.get("applicationId");
}
}
throw new NoSuchElementException("Cannot find applicationId for id: " + id);
}
我收到了来自 RestAssured 的回复,这是一个 JsonArray 看起来类似于下面的代码
[{
"id": "1",
"applicationId": "ABC"
}, {
"id": "2",
"applicationId": "CDE"
}, {
"id": "3",
"applicationId": "XYZ"
}]
我使用代码从第一个 Json 元素中获取 "id"
List<String> jresponse = response.jsonPath().getList("$");
for (int i = 0; i < jsonResponse.size(); i++) {
String id = response.jsonPath().getString("id[" + i + "]");
if(id.equals("1"){
do something
}
else {
something else
}
}
有没有办法在上面的代码中使用 foreach 代替 for?
而不是像这样获取根级别:
List<String> jresponse = response.jsonPath().getList("$");
可以直接抢ID:
List<String> ids = path.getList("id");
然后,您可以使用 foreach 循环,而不是像这样使用索引:
List<String> ids = path.getList("id");
for (String id : ids) {
if (id.equals("1")) {
//do something
} else {
//do something else
}
}
编辑:
最好的方法(可能)是创建代表 JSON 的对象。
为此,我们必须了解 JSON 包含的内容。到目前为止,您有 JSON 个包含 JSON 个对象的数组。每个 JSON 个对象包含 id
和 applicationId
。为了将此 JSON 解析为 Java class,我们必须创建一个 class。我们称它为 Identity
。你可以随便叫它。
public class Identity {
public String id;
public String applicationId;
}
以上是JSON对象的表示。字段名称是 JSON 中的确切名称。标识符应为 public.
现在,要将 JSON 解析为 Java classes,我们可以像这样使用 JsonPath
:
Identity[] identities = path.getObject("$", Identity[].class);
然后,我们遍历数组得到我们想要的:
for (Identity identity : identities) {
if (identity.id.equals("1")) {
System.out.println(identity.applicationId);
}
}
基于此,您可以创建一个完整的方法,而不仅仅是像这样打印 applicationId
:
private static String getApplicationId(String id, Identity[] identities) {
for (Identity identity : identities) {
if (identity.id.equals(id)) {
return identity.applicationId;
}
}
throw new NoSuchElementException("Cannot find applicationId for id: " + id);
}
另一个编辑:
为了使用 foreach
并基于 id
获得 applicationID
,您需要使用 getList
方法,但方式不同。
List<HashMap<String, String>> responseMap = response.jsonPath().getList("$");
在上面的代码中,我们得到了 JSON 数组中 JSON 个对象的列表。
HashMap 中的每个元素都是一个 JSON 对象。字符串是 id
和 applicationId
等属性,第二个 String
是每个属性的值。
现在,我们可以像这样使用 foreach
循环来获得所需的结果:
private static String getApplicationIdBasedOnId(Response response, String id) {
List<HashMap<String, String>> responseMap = response.jsonPath().getList("$");
for (HashMap<String, String> singleObject : responseMap) {
if (singleObject.get("id").equals(id)) {
return singleObject.get("applicationId");
}
}
throw new NoSuchElementException("Cannot find applicationId for id: " + id);
}