Como extrair valor da carga útil em java

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