我对 Android 比较陌生,我正在尝试解析一些数据,但我似乎在 LogCat 中收到以下错误:
Unexpected value from nativeGetEnabledTags: 0
Error parsing data org.json.JSONException
我从以下位置获取 JSON 数据: http ://api.wunderground.com/api/180dde448747af27/forecast/q/UK/Bradford.json
我正在使用以下代码提取数据:
JSONArray forecasts = json.getJSONArray("forecast");
for (int i=0;i<forecasts.length();i++) {
HashMap<String, String> map = new HashMap<String, String>();
JSONObject e = forecasts.getJSONObject(i);
// simpleforecast is a json array
JSONArray forecastday = json.getJSONArray("forecastday");
JSONObject fd = forecastday.getJSONObject(i);
String icon = fd.getString("icon");
map.put("id", String.valueOf(i));
map.put("icon", icon);
mylist.add(map);
}
我相信这个错误与我的 JSON 拉取有关,我可能没有正确解析它,但我似乎找不到正确的方法来解决它。这段代码被一个 try-catch 包围,然后我有一个列表适配器,我将代码添加到其中。
如果我遗漏了任何东西,我深表歉意,但我相当有信心这已经足够了,因为我相信这就是错误的来源。