如何 search/find 在 JSON 中与 java
How to search/find In JSON with java
我有下面的 JSON 字符串,我想在 JSON 字符串中使用 find/search 条件。
- 查找存在的键数。
- 获取给定键的值(如果我们有数组)
{
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
},
"expensive": 10
}
我正在寻找类似 Groovy GPath 语法
的解决方案
- store.book - 这个数组的大小。
- store.book[*].category - 数组中存在的键的次数。
- store.bicycle - 如果它发现它必须 return 真值
我会尝试以下库
https://github.com/jayway/JsonPath
给你所有的书
你也可以使用JsonPath project provided by REST Assured。此 JsonPath 项目使用 Groovy GPath 表达式。在 Maven 中,您可以像这样依赖它:
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
</dependency>
示例:
获取所有图书类别的列表:
List<String> categories = JsonPath.from(json).get("store.book.category");
获取第一本书类别:
String category = JsonPath.from(json).get("store.book[0].category");
获取最后一本书类别:
String category = JsonPath.from(json).get("store.book[-1].category");
获取价格在 5 到 15 之间的所有书籍:
List<Map> books = JsonPath.from(json).get("store.book.findAll { book -> book.price >= 5 && book.price <= 15 }");
GPath 非常强大,您可以在路径表达式中使用高阶函数和所有 Groovy 数据结构。
首先你要添加依赖
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
然后你可以使用这个代码:
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.XML;
public class Main {
public static int PRETTY_PRINT_INDENT_FACTOR = 4;
public static String TEST_XML_STRING =
"<Result><ResultParameters><ResultParameter><Key>TransEndDate</Key><Value>20170731</Value></ResultParameter><ResultParameter><Key>Failed Reason</Key><Value>Operator 03058361178058365278 has no permission to perform the Check Balance service.</Value></ResultParameter><ResultParameter><Key>TransEndTime</Key><Value>123611</Value></ResultParameter></ResultParameters><ResultCode>2000</ResultCode><ResultType>0</ResultType><OriginatorConversationID>S_X20130129210125</OriginatorConversationID><ResultDesc>Initiator authentication error.</ResultDesc><TransactionID>000749213589</TransactionID><ConversationID>AG_20170731_00004c28e51f1f822e9e</ConversationID></Result>";
public static void main(String[] args) {
try {
JSONObject xmlJSONObj = XML.toJSONObject(TEST_XML_STRING);
String jsonPrettyPrintString = xmlJSONObj.toString(PRETTY_PRINT_INDENT_FACTOR);
System.out.println(jsonPrettyPrintString);
System.out.println("Element="+xmlJSONObj.getJSONObject("Result").getInt("ResultCode"));
} catch (JSONException je) {
System.out.println(je.toString());
}
}
}
// in it i am searching an element which is present in a json object
首先在pom中添加json-路径依赖
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.2.0</version>
</dependency>
在 Base Class 中创建一个可以重复使用的实用程序:
public static String getValueFromJsonPath(String apiResponse, String jsonPath) {
return JsonPath.read(apiResponse, jsonPath);
}
使用此方法的一个示例:
getValueFromJsonPath(apiResponse, "$.store.book[0].category");
注意:根据预期结果创建具有不同 return 类型的重载方法(例如用于从 json 获取列表的列表)
我有下面的 JSON 字符串,我想在 JSON 字符串中使用 find/search 条件。
- 查找存在的键数。
- 获取给定键的值(如果我们有数组)
{
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
},
"expensive": 10
}
我正在寻找类似 Groovy GPath 语法
的解决方案- store.book - 这个数组的大小。
- store.book[*].category - 数组中存在的键的次数。
- store.bicycle - 如果它发现它必须 return 真值
我会尝试以下库
https://github.com/jayway/JsonPath
给你所有的书
你也可以使用JsonPath project provided by REST Assured。此 JsonPath 项目使用 Groovy GPath 表达式。在 Maven 中,您可以像这样依赖它:
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
</dependency>
示例:
获取所有图书类别的列表:
List<String> categories = JsonPath.from(json).get("store.book.category");
获取第一本书类别:
String category = JsonPath.from(json).get("store.book[0].category");
获取最后一本书类别:
String category = JsonPath.from(json).get("store.book[-1].category");
获取价格在 5 到 15 之间的所有书籍:
List<Map> books = JsonPath.from(json).get("store.book.findAll { book -> book.price >= 5 && book.price <= 15 }");
GPath 非常强大,您可以在路径表达式中使用高阶函数和所有 Groovy 数据结构。
首先你要添加依赖
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
然后你可以使用这个代码:
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.XML;
public class Main {
public static int PRETTY_PRINT_INDENT_FACTOR = 4;
public static String TEST_XML_STRING =
"<Result><ResultParameters><ResultParameter><Key>TransEndDate</Key><Value>20170731</Value></ResultParameter><ResultParameter><Key>Failed Reason</Key><Value>Operator 03058361178058365278 has no permission to perform the Check Balance service.</Value></ResultParameter><ResultParameter><Key>TransEndTime</Key><Value>123611</Value></ResultParameter></ResultParameters><ResultCode>2000</ResultCode><ResultType>0</ResultType><OriginatorConversationID>S_X20130129210125</OriginatorConversationID><ResultDesc>Initiator authentication error.</ResultDesc><TransactionID>000749213589</TransactionID><ConversationID>AG_20170731_00004c28e51f1f822e9e</ConversationID></Result>";
public static void main(String[] args) {
try {
JSONObject xmlJSONObj = XML.toJSONObject(TEST_XML_STRING);
String jsonPrettyPrintString = xmlJSONObj.toString(PRETTY_PRINT_INDENT_FACTOR);
System.out.println(jsonPrettyPrintString);
System.out.println("Element="+xmlJSONObj.getJSONObject("Result").getInt("ResultCode"));
} catch (JSONException je) {
System.out.println(je.toString());
}
}
}
// in it i am searching an element which is present in a json object
首先在pom中添加json-路径依赖
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.2.0</version>
</dependency>
在 Base Class 中创建一个可以重复使用的实用程序:
public static String getValueFromJsonPath(String apiResponse, String jsonPath) {
return JsonPath.read(apiResponse, jsonPath);
}
使用此方法的一个示例:
getValueFromJsonPath(apiResponse, "$.store.book[0].category");
注意:根据预期结果创建具有不同 return 类型的重载方法(例如用于从 json 获取列表的列表)