package com.example.hstnc_activity;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.ListActivity;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.NavUtils;
import android.util.JsonReader;
import android.view.MenuItem;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.widget.ArrayAdapter;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
public class DisplayServiceActivity extends ListActivity {
private ListView listOfServices;
//JSONArrays?
JSONArray directory = null;
//JSON Node names
private static String TAG_ID = "id";
private static String TAG_NAME= "name";
private static String TAG_DIRECTORY = "Categories";
private final static String url;
JSONObject json;
jsonParser jParser = new jsonParser();
@SuppressLint("NewApi")
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
new Request().onPostExecute(url);
listOfServices =getListView(); //get builtin listView
ArrayList<HashMap<String, String>> directoryList = new ArrayList<HashMap<String, String>>();
// Intent intent = getIntent();
//String url = intent.getStringExtra("SERVICES_DIRECTORY");
try{
//getting Array
directory = json.getJSONArray(TAG_DIRECTORY);
for(int i= 0; i<directory.length(); i++){
JSONObject addItem =directory.getJSONObject(i);
//store each item in variable
String id = addItem.getString(TAG_ID);
String name= addItem.getString(TAG_NAME);
//create new HashMap
HashMap<String,String> map = new HashMap<String, String>();
//add each child node to HashMap key
map.put(TAG_ID, id);
map.put(TAG_NAME, name);
//adding HashList to ArrarList
directoryList.add(map);
}
} catch (JSONException e){
e.printStackTrace();
}
ListAdapter adapter = new SimpleAdapter(this,
directoryList,
R.layout.list_item,
new String[] { TAG_ID,TAG_NAME },
new int[] { android.R.id.text1,android.R.id.text2 });
setListAdapter(adapter);
setContentView(R.layout.service);
// Make sure we're running on Honeycomb or higher to use ActionBar APIs
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
// Show the Up button in the action bar.
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}// end of onCreate Method
@SuppressWarnings("unused")
public class Request extends AsyncTask<Void, Void, Void> {
protected Void doInBackground(Void... params) {
json = jParser.getJSONfromURL(url);
return null;
}
protected void onPostExecute(String url) {
json = jParser.getJSONfromURL(url);
}
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
}
}
我想在Android中执行JSON请求并获取信息并将其放入列表视图中。我在调试时一直收到“HTTP连接android.os.NetworkOnMainThreadException错误”作为错误。当运行apk时,它只是在我打开此活动时强制关闭。此活动通过另一个屏幕上的按钮启动。
答案 0 :(得分:2)
为什么这json = jParser.getJSONfromURL(url)
位于onPostExecute()
?我假设你忘了删除它,因为你在doInBackground()
中它也应该是
自onPostExecute()
UI Thread
运行NetworkOnMainThreadException
我没有注意到UI
正在进行网络运行的任何内容,但是如果有,则将其移至doInBackground()
此外,您不应直接致电onPostExecute()
或任何其他AsyncTask
方法。你需要用
Request = new Request(); // can send parameters to constructor if needed
request.execute(); // execute doInBackground()-- you can pass your url param in here for doInBackground to receive but you have to change the class declaration so that the first param takes a url
答案 1 :(得分:1)
从onPostExecute()
删除代码,它会正常运行。
其他更正: - onPostExecute()
将永远不会收到名为(String url)
的参数,因为您从doInBackground
返回null,而其他原因是您将AsyncTask参数设置为<Void, Void, Void>
这意味着AsyncTask不会收到任何参数,也不会从doInBackground返回到onPostExecute。
您的onPostExecute()
应如下所示: -
@Override
protected void onPostExecute(Void v) {
super.onPostExecute(v);
}
希望它会有所帮助。