cara mengekstrak nilai dari muatan di java

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