如何使用retrofit 2.0解析json?

时间:2015-11-11 05:23:28

标签: android json retrofit

对使用改造解析json对象有疑问   我的json回复将是这样的:

  

{“loginResult”:“{\”Result \“:2,\”UserID \“:0,\”ModuleID \“:1,\”ModuleName \“:\”CRM \“}”}

我怀疑的是,如果响应的结果是2,它应该重定向到下一页。如何为这个json响应创建pojo?

2 个答案:

答案 0 :(得分:2)

只需使用GsonConverterFactory,在使用之前需要将其添加到您的gradle文件中:

compile 'com.squareup.retrofit:converter-gson'

我们假设您有一个名为LoginResponse的对象,它有一个名为loginResult的属性:

public class LoginResponse{
    LoginResult loginResult;
}

LoginResult对象定义如下:

public class LoginResult{
    int result;
    long userId;
    ...
}

然后使用Retrofit请求:

    public interface APIService {
        @POST("SOMETHING/login")
        Call<LoginResponse> doLogin();

    }

    public void doSomething() {
        Retrofit retrofit = new Retrofit.Builder()
            .baseUrl("YOUR LOGIN BASE URL")
            .addConverterFactory(GsonConverterFactory.create())
            .build();

        APIService service = retrofit.create(APIService.class);
        Call<LoginResponse> loginCall = service.doLogin();
        //if you want to request synchronous:
        LoginResponse response = loginCall.execute();
        //if you want to request asynchronous:
        LoginResponse response = loginCall.enqueue(new Callback<LoginResponse>() {
          @Override void onResponse(/* ... */) {
               // ...
           }

          @Override void onFailure(Throwable t) {
             // ...
          }
        });
    }

获得LoginResponse后,您可以开始工作:

if(response.loginResult.result == 2){
    //do work here.something like startActivity(...);
}

参考:

  1. https://realm.io/news/droidcon-jake-wharton-simple-http-retrofit-2/
  2. http://inthecheesefactory.com/blog/retrofit-2.0/en

答案 1 :(得分:1)

使用http://www.jsonschema2pojo.org/轻松创建pojo类以满足您的需求。在那个集合源类型中为json和Annotation样式的Gson。将yourjson添加为从那里创建的pojo

     -----------------------------------com.example.Example.java-----------------------------------

package com.example;

import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

@Generated("org.jsonschema2pojo")
public class Example {

@SerializedName("loginResult")
@Expose
private LoginResult loginResult;

/**
* 
* @return
* The loginResult
*/
public LoginResult getLoginResult() {
return loginResult;
}

/**
* 
* @param loginResult
* The loginResult
*/
public void setLoginResult(LoginResult loginResult) {
this.loginResult = loginResult;
}

}
-----------------------------------com.example.LoginResult.java-----------------------------------

package com.example;

import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

@Generated("org.jsonschema2pojo")
public class LoginResult {

@SerializedName("Result")
@Expose
private Integer Result;
@SerializedName("UserID")
@Expose
private Integer UserID;
@SerializedName("ModuleID")
@Expose
private Integer ModuleID;
@SerializedName("ModuleName")
@Expose
private String ModuleName;

/**
* 
* @return
* The Result
*/
public Integer getResult() {
return Result;
}

/**
* 
* @param Result
* The Result
*/
public void setResult(Integer Result) {
this.Result = Result;
}

/**
* 
* @return
* The UserID
*/
public Integer getUserID() {
return UserID;
}

/**
* 
* @param UserID
* The UserID
*/
public void setUserID(Integer UserID) {
this.UserID = UserID;
}

/**
* 
* @return
* The ModuleID
*/
public Integer getModuleID() {
return ModuleID;
}

/**
* 
* @param ModuleID
* The ModuleID
*/
public void setModuleID(Integer ModuleID) {
this.ModuleID = ModuleID;
}

/**
* 
* @return
* The ModuleName
*/
public String getModuleName() {
return ModuleName;
}

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

}