PHP ページを使用してデータベースに接続し、JSON を介して情報を解析するプログラムを作成していました。問題は、ネットワーク通信を担当する AsyncTask で RuntimeException が発生することです。テスト用に物理的な Android デバイスを使用しています。
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("URL");
try {
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("password", "******"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Error appears on this line
HttpResponse response = httpclient.execute(httppost);
//JSON Parsing here
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
catch (Throwable t)
{
CharSequence message = "Request failed: " + t.toString();
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
}