2017-09-23 30 views
0

我正在开发一个应用程序,我想要访问Web服务并获取数据。我正在使用Google Volley来访问网络服务。我正在做的一切正常,但无法使用GSON解析JSON。我无法理解我在哪里做错了。如何解析JSON在Android中使用GSON

Here is the URL of Web Services

下面是我在做什么

RequestQueue requestQueue = Volley.newRequestQueue(this); 
    JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(
      Request.Method.GET, 
      "https://api.github.com/repos/crashlytics/secureudid/issues", 
      null, 
      new MyListner(), 
      new MyErrorListner() 
    ); 

    requestQueue.add(jsonObjectRequest); 

} 

class MyListner implements Response.Listener<JSONObject> 
{ 
    @Override 
    public void onResponse(JSONObject response) { 

     Gson gson = new Gson(); 
     Results results = gson.fromJson(response.toString(), Results.class); 

     for(Test t : results.getmResults()) 
     { 
      Log.e("Tag", t.toString()); 
     } 


    } 
} 

class MyErrorListner implements Response.ErrorListener 
{ 
    @Override 
    public void onErrorResponse(VolleyError error) { 
     Log.e("Error", error.getMessage()); 
    } 
} 

其他类给出如下

public class Results { 


private ArrayList<Test> mResults; 

public void setResults(ArrayList<Test> results) 
{ 
    mResults = results; 
} 

public ArrayList<Test> getmResults() 
{ 
    return mResults; 
} 
} 

public class Test { 

@SerializedName("title") 
private String mTitle; 

@SerializedName("user") 
private User mUser; 

@SerializedName("created_at") 
private String mCreatedAt; 

@SerializedName("body") 
private String mBody; 

@SerializedName("updated_at") 
private String mUpdatedAt; 

public String getmBody() { 
    return mBody; 
} 

public void setmBody(String mBody) { 
    this.mBody = mBody; 
} 

public String getmUpdatedAt() { 
    return mUpdatedAt; 
} 

public void setmUpdatedAt(String mUpdatedAt) { 
    this.mUpdatedAt = mUpdatedAt; 
} 

public String getmCreatedAt() { 
    return mCreatedAt; 
} 

public void setmCreatedAt(String mCreatedAt) { 
    this.mCreatedAt = mCreatedAt; 
} 

public User getmUser() { 
    return mUser; 
} 

public void setmUser(User mUser) { 
    this.mUser = mUser; 
} 

public String getmTitle() { 
    return mTitle; 
} 

public void setmTitle(String mTitle) { 
    this.mTitle = mTitle; 
} 

@Override 
public String toString() { 
    return mTitle + " " + mBody + " " + mCreatedAt + " " + mUpdatedAt + " " + mUser.getmLogin() + " "; 
} 
} 


public class User { 

@SerializedName("login") 
private String mLogin; 

public String getmLogin() { 
    return mLogin; 
} 

public void setmLogin(String mLogin) { 
    this.mLogin = mLogin; 
} 
} 

这里是我得到的错误

org.json.JSONException: Value [{"url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/28","repository_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid","labels_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/28\/labels{\/name}","comments_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/28\/comments","events_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/28\/events","html_url":"https:\/\/github.com\/crashlytics\/secureudid\/pull\/28","id":222258999,"number":28,"title":"Fix broken headings in Markdown files","user":{"login":"bryant1410","id":3905501,"avatar_url":"https:\/\/avatars3.githubusercontent.com\/u\/3905501?v=4","gravatar_id":"","url":"https:\/\/api.github.com\/users\/bryant1410","html_url":"https:\/\/github.com\/bryant1410","followers_url":"https:\/\/api.github.com\/users\/bryant1410\/followers","following_url":"https:\/\/api.github.com\/users\/bryant1410\/following{\/other_user}","gists_url":"https:\/\/api.github.com\/users\/bryant1410\/gists{\/gist_id}","starred_url":"https:\/\/api.github.com\/users\/bryant1410\/starred{\/owner}{\/repo}","subscriptions_url":"https:\/\/api.github.com\/users\/bryant1410\/subscriptions","organizations_url":"https:\/\/api.github.com\/users\/bryant1410\/orgs","repos_url":"https:\/\/api.github.com\/users\/bryant1410\/repos","events_url":"https:\/\/api.github.com\/users\/bryant1410\/events{\/privacy}","received_events_url":"https:\/\/api.github.com\/users\/bryant1410\/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-04-17T23:26:47Z","updated_at":"2017-04-17T23:26:47Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/pulls\/28","html_url":"https:\/\/github.com\/crashlytics\/secureudid\/pull\/28","diff_url":"https:\/\/github.com\/crashlytics\/secureudid\/pull\/28.diff","patch_url":"https:\/\/github.com\/crashlytics\/secureudid\/pull\/28.patch"},"body":"GitHub changed the way Markdown headings are parsed, so this change fixes it.\n\nSee [bryant1410\/readmesfix](https:\/\/github.com\/bryant1410\/readmesfix) for more information.\n\nTackles bryant1410\/readmesfix#1\n"},{"url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/13","repository_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid","labels_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/13\/labels{\/name}","comments_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/13\/comments","events_url":"https:\/\/api.github.com\/repos\/crashlytics\/secureudid\/issues\/13\/events","html_url":"https:\/\/github.com\/crashlytics\/secureudid\/issues\/13","id":3923240,"number":13,"title":"Not working with ARC","user":{"login":"SaschaMoellering","id":1321549,"avatar_url":"https:\/\/avatars0.githubusercontent.com\/u\/1321549?v=4","gravatar_id":"","url":"https:\/\/api.github.com\/users\/SaschaMoellering","html_url":"https:\/\/github.com\/SaschaMoellering","followers_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/followers","following_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/following{\/other_user}","gists_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/gists{\/gist_id}","starred_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/starred{\/owner}{\/repo}","subscriptions_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/subscriptions","organizations_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/orgs","repos_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/repos","events_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/events{\/privacy}","received_events_url":"https:\/\/api.github.com\/users\/SaschaMoellering\/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"20 
+2

你异常的消息应该有比这更文本。请发布整个事情。 –

+0

考虑阅读使用GSON与Volley的官方教程,而不是解析然后解析,然后解析UI线程上的响应.... https://developer.android.com/training/volley/request-custom.html – EpicPandaForce

回答

0

您正尝试将对象数组(从您的webservices)解析为包含属性mResults的对象,该对象是对象数组(Test);

,而不是分析你需要直接使用TestArrayList期间使用Results类:

Results results = gson.fromJson(response.toString(), Results.class); 

应该

ArrayList<Test> results = gson.fromJson(response.toString(), new TypeToken<ArrayList<Test>>(){}.getType()); 

由于ArrayList的是一个通用的它无法使用ArrayList<Test>.class要获得数据类型的表示,我们必须使用TypeToken。什么是TypeToken?

TypeToken表示一个泛型类型T. Java尚未提供一种方法来表示泛型类型,因此该类可以。强制客户创建该类的子类 ,该类允许在运行时检索类型信息 。

getType返回用于构建TypeToken的类的类型,因此我们可以在gson fromJson()解析方法中使用它。

-

问题二:

你正在使用JsonObjectRequest,但服务器的响应是一个JSON数组,所以你需要使用JsonArrayRequest等更新MyListner使用JSONArray,而不是JSONObject

当您正在分析服务器响应手动你可以使用StringRequest所以避免解析的Volley一步。

StringRequest jsonObjectRequest = new StringRequest(
    Request.Method.GET, 
    "https://api.github.com/repos/crashlytics/secureudid/issues", 
    new MyListner(), 
    new MyErrorListner() 
); 

MyListner现在直接使用String

class MyListner implements Response.Listener<String> { 
    @Override 
    public void onResponse(String response) { 
     Gson gson = new Gson(); 
     ArrayList<Test> results = gson.fromJson(response, new TypeToken<ArrayList<Test>>() {}.getType()); 

     for (Test t : results) { 
      Log.e("Tag", t.toString()); 
     } 
    } 
} 
+0

嘿,感谢您的答案,但仍然无法解决错误。我认为结果班有问题 –

+0

@AkshayNaik确实还有一个错误,我更新了我的答案。现在一定是好的(我在一个游乐场项目上尝试它,它的工作;)) –

+0

Maisse嘿,感谢解决方案我解决了它我只需要一个更多的帮助,你可以告诉我什么新的TypeToken >(){} .getType()特别做 –