无法解析JSON响应对象 [英] Cannot Parse JSON Response Object

查看:119
本文介绍了无法解析JSON响应对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试解析来自FlickR的JSON响应,但是我遇到了困难。我已经运行了一些测试,我收到的响应代码为200,并且能够使用日志拦截器查看实际的JSON。

I am trying to parse a JSON response from FlickR, however I am having difficulty. I have ran some tests, and I am receiving a response code of 200 and am able to view the actual JSON using the logging interceptor.

但是,我收到的是null我尝试访问JSON对象时的指针。我觉得它与我的映射/ JSON到POJO有关:

However, I am receiving a null pointer when I try to access the JSON object. I have a feeling it has to do with my mapping / JSON to POJO:

**Model:**

照片:

public class Photos {

@SerializedName("page")
@Expose
private int page;
@SerializedName("pages")
@Expose
private int pages;
@SerializedName("perpage")
@Expose
private int perpage;
@SerializedName("total")
@Expose
private String total;
@SerializedName("photo")
@Expose
private List<Photo> photo = new ArrayList<Photo>();

/**
 *
 * @return
 *     The page
 */
public int getPage() {
    return page;
}

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

/**
 *
 * @return
 *     The pages
 */
public int getPages() {
    return pages;
}

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

/**
 *
 * @return
 *     The perpage
 */
public int getPerpage() {
    return perpage;
}

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

/**
 *
 * @return
 *     The total
 */
public String getTotal() {
    return total;
}

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

/**
 *
 * @return
 *     The photo
 */
public List<Photo> getPhoto() {
    return photo;
}

/**
 *
 * @param photo
 *     The photo
 */
public void setPhoto(List<Photo> photo) {
    this.photo = photo;
  }

}

照片:

public class Photo {

@SerializedName("id")
@Expose
private String id;
@SerializedName("owner")
@Expose
private String owner;
@SerializedName("secret")
@Expose
private String secret;
@SerializedName("server")
@Expose
private String server;
@SerializedName("farm")
@Expose
private int farm;
@SerializedName("title")
@Expose
private String title;
@SerializedName("ispublic")
@Expose
private int ispublic;
@SerializedName("isfriend")
@Expose
private int isfriend;
@SerializedName("isfamily")
@Expose
private int isfamily;
@SerializedName("url_m")
@Expose
private String urlM;
@SerializedName("height_m")
@Expose
private String heightM;
@SerializedName("width_m")
@Expose
private String widthM;

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

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

/**
 * @return The owner
 */
public String getOwner() {
    return owner;
}

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

/**
 * @return The secret
 */
public String getSecret() {
    return secret;
}

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

/**
 * @return The server
 */
public String getServer() {
    return server;
}

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

/**
 * @return The farm
 */
public int getFarm() {
    return farm;
}

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

/**
 * @return The title
 */
public String getTitle() {
    return title;
}

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

/**
 * @return The ispublic
 */
public int getIspublic() {
    return ispublic;
}

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

/**
 * @return The isfriend
 */
public int getIsfriend() {
    return isfriend;
}

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

/**
 * @return The isfamily
 */
public int getIsfamily() {
    return isfamily;
}

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

/**
 * @return The urlM
 */
public String getUrlM() {
    return urlM;
}

/**
 * @param urlM The url_m
 */
public void setUrlM(String urlM) {
    this.urlM = urlM;
}

/**
 * @return The heightM
 */
public String getHeightM() {
    return heightM;
}

/**
 * @param heightM The height_m
 */
public void setHeightM(String heightM) {
    this.heightM = heightM;
}

/**
 * @return The widthM
 */
public String getWidthM() {
    return widthM;
}

/**
 * @param widthM The width_m
 */
public void setWidthM(String widthM) {
    this.widthM = widthM;
}

}

JSON响应:

{
  photos: {
  page: 1,
  pages: 3683,
  perpage: 100,
  total: "368270",
  photo: [
       {
       id: "29264707352",
       owner: "84316756@N02",
       secret: "9ed355a86e",
       server: "8603",
       farm: 9,
       title: "Tercer Patio de los Claustros de la Compañía/ Arequipa",
       ispublic: 1,
       isfriend: 0,
       isfamily: 0,
       url_m:          "https://farm9.staticflickr.com/8603/29264707352_9ed355a86e.jpg",
       height_m: "500",
       width_m: "333"
          },
        {
        id: "29339070436",
        owner: "146617764@N02",
        secret: "b52f1e9914",
        server: "8509",
        farm: 9,
        title: "2016-04-17 09.24.07",
        ispublic: 1,
        isfriend: 0,
        isfamily: 0,
        url_m: "https://farm9.staticflickr.com/8509/29339070436_b52f1e9914.jpg",
        height_m: "281",
        width_m: "500"
       },

LOGCAT

09-03 15:11:33.037 1846-1846/com.troychuinard.flickr_test E/AndroidRuntime: FATAL EXCEPTION: main
                                                                            Process: com.troychuinard.flickr_test, PID: 1846
                                                                            java.lang.NullPointerException: println needs a message
                                                                                at android.util.Log.println_native(Native Method)
                                                                                at android.util.Log.v(Log.java:118)
                                                                                at com.troychuinard.flickr_test.MainActivity$1$1.onResponse(MainActivity.java:72)
                                                                                at retrofit2.ExecutorCallAdapterFactory$ExecutorCallbackCall$1$1.run(ExecutorCallAdapterFactory.java:68)
                                                                                at android.os.Handler.handleCallback(Handler.java:739)
                                                                                at android.os.Handler.dispatchMessage(Handler.java:95)
                                                                                at android.os.Looper.loop(Looper.java:135)
                                                                                at android.app.ActivityThread.main(ActivityThread.java:5254)
                                                                                at java.lang.reflect.Method.invoke(Native Method)
                                                                                at java.lang.reflect.Method.invoke(Method.java:372)
                                                                                at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
                                                                                at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
09-03 15:14:21.858 1846-1846/com.troychuinard.flickr_test I/Process: Sending signal. PID: 1846 SIG: 9

第72行

         Log.v("RESPONSE_BODY", response.body().getTotal());


推荐答案

您的 POJO class不适合服务器响应,因此您的正文 Null 。您的模型应如下所示:

Your POJO class is not fit to server response so your body is Null. Your model should be like below:

public class Model {

    // I guess it should be List too -> List<Photos>
    // your response is not complete to see 
    Photos photos;


    public class Photos{
        int page;
        int pages;
        int perpage;
        int total;
        List<Photo> photo;


        //this photo class is inner class of Photos
        public class Photo{
            String id;
            String owner;
            String secret;
            //rest of things

        }
    }
}

这篇关于无法解析JSON响应对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆