2016-11-04 45 views
-1

我知道有一些相同的问题,但我无法弄清楚我做错了什么。NetworkOnMainThreadException - Android/Java

public class MainActivity extends AppCompatActivity { 
... 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     ... 
     new JsonHandler().execute(this, collection, gridArray, customGridAdapter); 
     ... 
    } 
} 

所以在我的主要活动中,我需要查询一个API,它给出了返回JSON,我必须处理它来构建我的数据库。

然后在doInBackground()中调用getAllCards()来获取第一个JSON。由于JSON包含更多JSON请求的URL,因此我有几个方法可以查询更详细的JSON。

public final class JsonHandler extends AsyncTask { 
private final String urlCards = "https://api.gwentapi.com/v0/cards/"; 
private final String urlSpecificCard = "https://api.gwentapi.com/v0/cards/:id"; 

private Context context; 
private Collection collection; 
private ArrayList<Card> gridArray; 
private CustomGridViewAdapter customGridAdapter; 

public JsonHandler(Context context, Collection collection, ArrayList<Card> gridArray, CustomGridViewAdapter customGridAdapter){ 
    this.context = context; 
    this.collection = collection; 
    this.gridArray = gridArray; 
    this.customGridAdapter = customGridAdapter; 
} 

public JsonHandler(){ 
    this.context = null; 
    this.collection = null; 
    this.gridArray = null; 
    this.customGridAdapter = null; 
} 

private void getAllCards() throws RuntimeException { 
    JsonObjectRequest arrayRequest = new JsonObjectRequest(Request.Method.GET, urlCards, null, new Response.Listener<JSONObject>() { 

     @Override 
     public void onResponse(JSONObject response) { 
      generateCollection(response); 
     } 
    }, new Response.ErrorListener() { 

     @Override 
     public void onErrorResponse(VolleyError e) { 
      throw new RuntimeException(e.getMessage()); 
     } 
    }); 

    Volley.newRequestQueue(context).add(arrayRequest); 
} 

private void getSpecificCard(final String cardURL) throws RuntimeException { 
    JsonObjectRequest arrayRequest = new JsonObjectRequest(Request.Method.GET, cardURL, null, new Response.Listener<JSONObject>() { 

     @Override 
     public void onResponse(JSONObject response) { 
      processCard(response, collection); 
     } 
    }, new Response.ErrorListener() { 

     @Override 
     public void onErrorResponse(VolleyError e) { 
      throw new RuntimeException(e.getMessage()); 
     } 
    }); 

    Volley.newRequestQueue(context).add(arrayRequest); 
} 

private void generateCollection(JSONObject response) throws RuntimeException { 
    try { 
     JSONArray array = response.getJSONArray("results"); 
     for(int i = 0; i < array.length();i++){ 
      JSONObject object = array.getJSONObject(i); 
      String cardURL = object.getString("href"); 
      getSpecificCard(cardURL); 
     } 
    } catch (Exception e) { 
     throw new RuntimeException(e.getMessage()); 
    } 
} 

private void processCard(JSONObject response, Collection collection){ 
    try { 
     String id = response.getString("id"); 
     EnumFaction faction = EnumFaction.valueOf(response.getJSONObject("faction").getString("name").toUpperCase()); 
     EnumType type = null; 
     EnumRarity rarity = null; 
     EnumLane lane = null; 
     EnumLoyalty loyalty = null; 
     String name = response.getString("name"); 
     String text = response.getString("text"); 
     String imagePath = "https://api.gwentapi.com/media/\" + id + \"_small.png"; 

     URL url = new URL(imagePath); 
     InputStream inputStream = url.openConnection().getInputStream(); 
     Bitmap image = BitmapFactory.decodeStream(inputStream); 

     Card card = new Card(id, faction, type, rarity, lane, loyalty, name, text, null, imagePath, 0); 
     collection.addCard(card); 
     gridArray.add(card); 
     customGridAdapter.notifyDataSetChanged(); 
    } catch (Exception e){ 
     throw new RuntimeException(e.getMessage()); 
    } 
} 

@Override 
protected Object doInBackground(Object[] params) { 
    context = (Context) params[0]; 
    collection = (Collection) params[1]; 
    gridArray = (ArrayList<Card>) params[2]; 
    customGridAdapter = (CustomGridViewAdapter) params[3]; 
    getAllCards(); 
    return null; 
} 

}

所以现在的问题:

当PROGRAMM达到processCard()时,我已经收集了足够的信息,我得到一个NetworkOnMainThreadException当我创建InputStream的。

我已经尝试了很多不同的方法来从我的URL和不同的方法获取位图来执行异步任务 - 所有这些都导致相同的结果。

如果你能告诉我如何解决这个问题,我会非常高兴。

编辑:由于它被标记为重复:我使用ASYNCTASK!我看了很多问题,并尝试了他们在那里做了什么,这是行不通的!

+0

您正在使用乱射。你不需要AsyncTask ... –

+0

嗯,我启动了AsyncTask,因为它给了我这个例外。所以我搜索了互联网,每个人都说它需要成为一个AsyncTasc。错误仍然是有或没有AsyncTask相同... – Darkmessage

+0

您的错误是因为Volleys onResponse发生在主UI上......您在AsyncTask之外调用'processCard'。这篇文章**是**重复。在后台完成的唯一部分“getAllCards”将添加到Volley队列中。 –

回答

0

没有真正熟悉如何凌空作品,但onResponse但要在主线程,所以你需要开始一个新的线程来打这通电话也

+0

但是,从一个新线程的doInBackground调用Json方法? – Darkmessage

+0

@Darkmessage在后台调用的唯一东西就是你的'getAllCards'回调'onResponse'回调在主线程中 – tyczj

相关问题