0
我有以下的JSON:如何將json數據數組插入現有的json字段?
{
"X":20,
"Y":null
}
現在,關鍵Y,我需要插入下面的JSON數組。
{
"A":null,
"B":1,
"C":5000,
"D":0.25
}
我試過,但不起作用:
String response1 =
given()
.cookie(apiTestSessionID)
//.spec(requestSpecification)
.when()
//.get("/service/bill/Config")
.get("/service/bill/Config/0001")
.asString();
JsonPath jsonCstmrConfig = new JsonPath(response);
String response2 = given()
.cookie(apiTestSessionID)
.when()
.get("/service/commoncache/card")
.asString();
JsonPath jsonSoiRateCard = new JsonPath(response2);
Map<String,String> maps = jsonCstmrConfig.getMap("data");
maps.put("X","Value");
有沒有辦法與其他提供做保證的JSON庫。
由於它的工作原理。 – ButterSkotch
@RajanVerma很高興它幫助你... – Uttam
嗨烏坦,我面臨的問題更少,你能否也請幫忙。 http://stackoverflow.com/q/42691109/7640781 – ButterSkotch