修复IllegalStateException

时间:2017-07-03 19:43:07

标签: android json android-asynctask illegalstateexception

try {
        Response response = client.newCall(request).execute();
        getStockInfoFromJSON(response.body().string());
    } catch (IOException | JSONException | IllegalStateException e) {
        Log.i("GraphAsyncTask", e.toString());
    }

对于上面看到的代码块,我现在收到IllegalStateException。我最初没有得到这个错误。我需要更改API,因此请求对象中的URL是不同的。创建Response对象后出现错误。 getStockInfoFromJSON()方法未运行。我知道它没有运行,因为我在一开始就放置了一个日志语句,它没有出现在控制台中。如何防止抛出此错误。

private void getStockInfoFromJSON(String JsonString)
        throws JSONException {
    Log.i("MSA JSON string", JsonString);
    MyStocksActivity.StockData = new ArrayList<>();
    JSONObject Json = new JSONObject(JsonString);
    JSONObject StockInfo = Json.getJSONObject("Time Series (Daily)");
    JSONArray array = new JSONArray();
    StockInfo.toJSONArray(array);
    Log.i("MSA", "JSON array " + StockInfo.toString());

    for (int i = 0; i < array.length(); i++) {
        StockData datum = new StockData();
        JSONObject stockPrice = array.getJSONObject(i);
        Log.i("stock price array", stockPrice.toString());
        String date = array.getString(i);
        Log.i("date", date);
        String[] stringDate = date.split("-");
        Calendar cal = Calendar.getInstance();
        cal.set(Integer.parseInt(stringDate[0]),
                Integer.parseInt(stringDate[1]), Integer.parseInt(stringDate[2].substring(0, 2)));
        Log.i("cal", cal.toString());
        datum.date = cal.getTimeInMillis();
        datum.price = array.getDouble(3);
        datum.CalDate = date.split(" ")[0];
        MyStocksActivity.StockData.add(datum);

    }
}

这是我收到的错误消息。

07-03 15:05:29.586 27929-28167/com.example.sam_chordas.stockhawk I/GraphAsyncTask: java.lang.IllegalStateException: closed

1 个答案:

答案 0 :(得分:1)

您是否正在阅读响应机构两次?您只能拨打string()一次。