я пишу этот код в main.java
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
try{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://way2tutorial.com/json/index.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
}catch(Exception e){
Log.e("log_tag", "Error in http connection"+e.toString());
}
, а также включаю
<uses-permission android:name="android.permission.INTERNET"/>
в файл манифеста
, но при запуске приложения Android возникает ошибкав http
connectionandroid.os.NetworkOnMainThreadException