如何制作改造类

时间:2015-05-11 15:56:51

标签: android json retrofit

我正在尝试使用retrofit  库向Riot API发出api请求 并且示例请求返回如下所示的json:

{"dyrus":{"id":5908,"name":"Dyrus","profileIconId":752,"summonerLevel":30,"revisionDate":1431126576000}}

请注意,对象dyrus有多个子属性,我想获取id属性。我遇到的问题是我不想只查找dyrus的ID,但也要查找其他玩家的ID。当我查找其他玩家时,对象的名称会根据我查找的名称而改变。例如,这是另一个示例请求:

{"theoddone":{"id":60783,"name":"TheOddOne","profileIconId":752,"summonerLevel":30,"revisionDate":1431327360000}}

theoddone现在是对象的名称。如何根据被搜索的人创建一个动态更改对象名称的改装类。或者我如何访问id属性?我的班级现在看起来像这样但不起作用:

public class Summoner {

    private int id;
    private String name;
    private int profileIconId;
    private int summonerLevel;
    private int revisionDate;

    /**
     *
     * @return
     * The id
     */
    public int getId() {
        return id;
    }

    /**
     *
     * @param id
     * The id
     */
    public void setId(int id) {
        this.id = id;
    }

    /**
     *
     * @return
     * The name
     */
    public String getName() {
        return name;
    }

    /**
     *
     * @param name
     * The name
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     *
     * @return
     * The profileIconId
     */
    public int getProfileIconId() {
        return profileIconId;
    }

    /**
     *
     * @param profileIconId
     * The profileIconId
     */
    public void setProfileIconId(int profileIconId) {
        this.profileIconId = profileIconId;
    }

    /**
     *
     * @return
     * The summonerLevel
     */
    public int getSummonerLevel() {
        return summonerLevel;
    }

    /**
     *
     * @param summonerLevel
     * The summonerLevel
     */
    public void setSummonerLevel(int summonerLevel) {
        this.summonerLevel = summonerLevel;
    }

    /**
     *
     * @return
     * The revisionDate
     */
    public int getRevisionDate() {
        return revisionDate;
    }

    /**
     *
     * @param revisionDate
     * The revisionDate
     */
    public void setRevisionDate(int revisionDate) {
        this.revisionDate = revisionDate;
    }
}

如果您需要查看我使用改造的其他任何部分,请告诉我。提前致谢。

接口:

public interface SummonerId {

    @GET("/api/lol/{region}/v1.4/summoner/by-name/{summonerName}")
    void summoner(
      @Path("region") String region,
      @Path("summonerName") String summonerName,
      @Query("api_key") String apiKey,
      Callback<Summoner> cb
    );

}

我的活动的oncreate方法中的代码:

RestAdapter restAdapter = new RestAdapter.Builder()
            .setLogLevel(RestAdapter.LogLevel.FULL)
            .setEndpoint("https://na.api.pvp.net")
            .build();

SummonerId service = restAdapter.create(SummonerId.class);

service.summoner("na", "dyrus", "MY API KEY", new Callback<Summoner>() {
    @Override
    public void success(Summoner summoner, Response response) {
        //summoner.getId() == null
    }

    @Override
    public void failure(RetrofitError error) {

    }
});

当我运行代码时,它成功连接到服务器并获取正确的json,但没有正确地将它放入类中。

1 个答案:

答案 0 :(得分:2)

好的,我明白了。虽然我花了很长时间。

首先,您必须创建一个自定义的TypeAdapterFactory,如下面的类:

public class ItemTypeAdapterFactory implements TypeAdapterFactory {

    String name;

    public ItemTypeAdapterFactory(String name) {
        this.name = name;
    }

    public <T> TypeAdapter<T> create(Gson gson, final TypeToken<T> type) {

        final TypeAdapter<T> delegate = gson.getDelegateAdapter(this, type);
        final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);

        return new TypeAdapter<T>() {

            public void write(JsonWriter out, T value) throws IOException {
                delegate.write(out, value);
            }

            public T read(JsonReader in) throws IOException {

                JsonElement jsonElement = elementAdapter.read(in);
                if (jsonElement.isJsonObject()) {
                    JsonObject jsonObject = jsonElement.getAsJsonObject();
                    if (jsonObject.has(name) && jsonObject.get(name).isJsonObject())
                    {
                        jsonElement = jsonObject.get(name);
                    }
                }

                return delegate.fromJsonTree(jsonElement);
            }
        }.nullSafe();
    }
}

对于您的使用,您实际上只需复制并粘贴它,但请尝试了解会发生什么。

接下来,您将必须实现如下自定义GsonBuilder:

Gson gson = new GsonBuilder().registerTypeAdapterFactory(new ItemTypeAdapterFactory("dyrus")).create();

重要的部分是&#34; dyrus&#34;您可以使用您要查找的名称替换它。

接下来将gsonbuilder添加到你的restadapter:

RestAdapter restAdapter = new RestAdapter.Builder()
                    .setEndpoint("your endpoint")
                    .setConverter(new GsonConverter(gson))
                    .build();

在连接界面中使用以下方法:

public void getCurrentUser(Callback<Summoner> response);

按照以下方式收到您的POJO回复:

    ConnectionInterface connectionInterface = restAdapter.create(**ConnectionInterface.class**);
    connectionInterface.getCurrentUser(new Callback<Summoner>() {
        @Override
        public void success(Summoner response, Response response2) {
        }

        @Override
        public void failure(RetrofitError error) {
            Log.e("Response", error.getLocalizedMessage().toString());
        }
    });
}

};

您的POJO类是正确的,您可以将它命名为任何您想要的名称,因为变量会保留其名称。为了清晰起见,您可以调用UserPOJO类,只需将Summoner的所有实例重命名为UserPojo

希望这有帮助!