我的问题是,如果我没有指定,使用 DefaultHttpClient 发出的请求的默认超时是多少。
所以如果没有这样的代码
HttpParams my_httpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(my_httpParams, 3000);
HttpConnectionParams.setSoTimeout(my_httpParams, 1);
只是
HttpParams params = new BasicHttpParams();
HttpProtocolParams.setContentCharset(params,
HTTP.DEFAULT_CONTENT_CHARSET);
ClientConnectionManager cm = new ThreadSafeClientConnManager(params,
schemeRegistry);
SchemeRegistry schemeRegistry = new SchemeRegistry();
schemeRegistry.register(new Scheme("http", PlainSocketFactory
.getSocketFactory(), 80));
return new DefaultHttpClient(cm, params);
这个 httpClient 将等待服务器的响应多长时间?