2017-03-08 13 views
0

JSONPath式を記述して、この単純オブジェクトに対してactive=trueかどうかを確認しようとしています。JSONPathを使用してブール値を確認する

{ 
    "active": true 
} 

これはJSONPathで可能ですか?オンラインのJSONPathエバリュエーターで動作するようには思えません。

答えて

0

は、私は次のように動作するはずだと思う

final Configuration conf = Configuration.defaultConfiguration(); 
try { 
    Object returnObj = JsonPath.using(conf).parse(responseBody).read("$.active"); 
System.out.println(returnObj); 
} 
catch (PathNotFoundException e){ 
    System.err.println("JsonPath not found : " + path); 
} 
関連する問題