Jak wyodrębnić wartość z ładunku w Javie

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