web-dev-qa-db-ja.com

JSONObjectをJava Objectに変換

サービスに残りの呼び出しを行い、応答をJSONObjectに保存しました。しかし、私はそれをクラスオブジェクトに変換しようとしていますが、エラーが発生しています。私のコードは次のとおりです。

RestOperations operations = /*initalize*/;
String body = /*build request body*/;
String resourceResponse = operations.postForObject(/* url */, body, String.class);
JSONObject jsonResponse = new JSONObject(resourceResponse);
UserIdentifier userIdentifier = (UserIdentifier) jsonResponse.get("userIdentifier");

応答は次のようになります。

{
  "userIdentifier": {
    "uid": "ee63a52cda7bf411dd8603ac196951aa77",
    "code": "63a5297e7bf411dd8603ac196951aa77",
    "retailId": "860658787",
    "pointOfEntry": "RETAIL"
  },
  "resultCode": true
}

UserIdentifierクラスは次のようになります。

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;
    }
}

しかし、私はエラーを受け取ります:

Java.lang.ClassCastException: org.json.JSONObject cannot be cast to app.identity.UserIdentifier

私は何を間違えていますか?

編集1:回答からgsonを使用する試みは次のとおりです。

Gson gson = new GsonBuilder().create();
String body = /*build request body*/;
String resourceResponse = operations.postForObject(/* url */, body, String.class);
JSONObject jsonResponse = new JSONObject(resourceResponse);
UserIdentifier userIdentifier = gson.fromJson(jsonResponse.getString("userIdentifier"), UserIdentifier.class);

しかし、私はエラーを受け取ります:

org.json.JSONException: JSONObject["userIdentifier"] not a string.
    at org.json.JSONObject.getString(JSONObject.Java:658) ~[json-20140107.jar:na]
7
Richard

問題が何であるかを把握しました。文字列を取得する代わりにjsonobjectを抽出する必要がありました。問題を修正した行は次のとおりです。

UserIdentifier userIdentifier = gson.fromJson(jsonResponse.getJSONObject("userIdentifier").toString(), UserIdentifier.class);
5
Richard

Gsonを使用する必要があるかもしれません

   class Name{
String resultCode;
UserIdentifier useridentifier;
//getters

}

Gson gson=new Gson();
Name name=gson.fromJson(jsonString,Name.class);
8
Mahesh Giri

問題は、このようにgetメソッドで返されるオブジェクトをキャストできないことです。1つの解決策は、GSONライブラリを使用してこれになります。

RestOperations operations = /*initalize*/;
String body = /*build request body*/;
Gson gson = new Gson();
String resourceResponse = operations.postForObject(/* url */, body, String.class);
JSONObject jsonResponse = new JSONObject(resourceResponse);
String jsonUserIdentifier = jsonResponse.getString("userIdentifier");
UserIdentifier userIdentifier = gson.fromJson(jsonUserIdentifier , UserIdentifier.class);
1
fernandojne

Gsonライブラリを使用する

Gson gson=new GsonBuilder().create();

UserIdentifier userIdentifier=gson.fromJson(jsonString,UserIdentifier.class);

あなたの場合、jsonStringはresourceResponseです

詳細については Gson documentation

0
Noor Nawaz