データベースにエントリを入れようとしています。これは私が使用しているコードです
String url = String.format("http://xxxxxxx/xxx/index.php?home=yes&pid=%s", pid);
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
try {
ResponseHandler<String> responseHandler = new BasicResponseHandler();
String response = httpclient.execute(httppost, responseHandler);
Log.e("abc", response);
return response;
} catch (ClientProtocolException es)
{
Log.e("x" , es.getMessage());
return "";
} catch (IOException e)
{
Log.e("aasx" , e.getMessage());
return "";
}
このコードは正常に機能します。これで、インターネット接続の問題が発生すると、コードが
httpclient.execute(httppost, responseHandler);
2分以上スタックしました。
ほんの数秒間チェックし、応答がない場合は、それをチェックする方法はありますcatch the exceptions
か?