I made a call to relax in the service and saved the response in JSONObject . However, I am trying to convert it to a class object and get errors. Here is my code:
RestOperations operations = ; String body = ; String resourceResponse = operations.postForObject(, body, String.class); JSONObject jsonResponse = new JSONObject(resourceResponse); UserIdentifier userIdentifier = (UserIdentifier) jsonResponse.get("userIdentifier");
Here is the answer:
{ "userIdentifier": { "uid": "ee63a52cda7bf411dd8603ac196951aa77", "code": "63a5297e7bf411dd8603ac196951aa77", "retailId": "860658787", "pointOfEntry": "RETAIL" }, "resultCode": true }
And this is what the UserIdentifier class looks like:
public class UserIdentifier { private String uid; private String code; private String retailId; public UserIdentifier() { } public UserIdentifier(String uid, String code, String retailId) { this.uid = uid; this.code = code; this.retailId = retailId; } public String getuid() { return uid; } public void setuid(String uid) { this.uid = uid; } public String getcode() { return code; } public void setcode(String code) { this.code = code; } public String getretailId() { return retailId; } public void setretailId(String retailId) { this.retailId = retailId; } }
But I get the error:
java.lang.ClassCastException: org.json.JSONObject cannot be cast to app.identity.UserIdentifier
What am I doing wrong?
Edit 1: Here's an attempt to use gson from the answers:
Gson gson = new GsonBuilder().create(); String body = ; String resourceResponse = operations.postForObject(, body, String.class); JSONObject jsonResponse = new JSONObject(resourceResponse); UserIdentifier userIdentifier = gson.fromJson(jsonResponse.getString("userIdentifier"), UserIdentifier.class);
But I get the error:
org.json.JSONException: JSONObject["userIdentifier"] not a string. at org.json.JSONObject.getString(JSONObject.java:658) ~[json-20140107.jar:na]
source share