ネットワーク経由でスレッドに情報をロードしようとしています。インターネットがない場合、例外が発生する前に長時間フリーズするか、フリーズします。
// FREEZES HERE のタイムアウトを設定する方法はありますか、またはインターネットがない場合に例外を通過するのに長い時間がかかりますか? タイムアウトを設定する方法はありresponse = httpclient.execute(httppost);
ますか?
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://besttechsolutions.biz/projects/bookclub/getevents.php");
// FREEZES HERE or takes a long time to through exception when there is no internet
response = httpclient.execute(httppost);
responseBody = EntityUtils.toString(response.getEntity());