Android: connection timeout not working (connection waits forever)
问题 I have an application that connects to a server. I set a timeout, disconnected the device from internet and tried to execute the post request to see if the timeout was called, but the connection keeps waiting forever. This is my code: private static final int TIMEOUT_OPS = 3000 ; private HttpClient mHttpClient; public String sendToken(String token) throws IOException, AuthenticationException { JSONArray jsonData = new JSONArray(); jsonData.put(token); final HttpPost post = prepareJSONRequest