2017-03-08 1 views

Répondre

0

Je pense que les éléments suivants devraient travailler

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); 
}