我建议您将方法更改为
class GetJSonTask extends AsyncTask<String, Void, JSONObject[]> { ... protected JSONObject[] doInBackground(String... urls) { // Creating new JSON Parser JSonParser jParser = new JSonParser(); // Getting JSON from URL JSONObject[] jsons = new JSONObject[2]; jsons[0] = jParser.getJSonFromUrl(url1); jsons[1] = jParser.getJSonFromUrl(url2); return jsons;}protected void onPostExecute(JSONObject[] jsons) { JSonObject json1 = jsons[0]; JSonObject json2 = jsons[1]; // do you work after this}}
希望对您有所帮助!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)