So extrahieren Sie Wert aus der Nutzlast in Java

JsonPath jsonPath = new JsonPath(responseBody);
int user_id = jsonPath.getInt("user_id");
Cruel Caracal