web-dev-qa-db-ja.com

java)を使用してJSONで検索/検索する方法

以下のJSON文字列があります。JSON文字列で条件を検索/検索したいと思います。

1)。存在するキーの数を見つけるため。 2)。指定されたキーの値を取得するには(配列がある場合)

{
"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
}

GroovyGPath構文のようなソリューションを探しています

  • store.book-この配列のサイズ。
  • store.book [*]。category-配列に存在するキーの時間をどのように計るか。
  • store.bicycle-真の値を返さなければならないことがわかった場合
9
Ssire

REST Assured によって提供される JsonPath プロジェクトを使用することもできます。このJsonPathプロジェクトは、GroovyGPath式を使用します。 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データ構造を利用できます。

12
Johan

まず、依存関係を追加する必要があります

<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 03058361178\03058365278 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 
0
Usman Yaqoob

次のライブラリを試してみます

https://github.com/jayway/JsonPath

http://jsonpath.herokuapp.com/?path=%24.store.book [ *]

あなたにすべての本を与えます

0