public class CustomHttpClient {private static String TAG = "CustomHttpClient";private static final CommonLog log = LogFactory.createLog();private static final String CHARSET_UTF8 = HTTP.UTF_8;private static final String CHARSET_GB2312 = "GB2312";private static HttpClient customerHttpClient;private CustomHttpClient() {}/** * HttpClient post方法 *  * @param url * @param nameValuePairs * @return */public static String PostFromWebByHttpClient(Context context, String url,NameValuePair... nameValuePairs) {try {List<NameValuePair> params = new ArrayList<NameValuePair>();if (nameValuePairs != null) {for (int i = 0; i < nameValuePairs.length; i++) {params.add(nameValuePairs[i]);}}UrlEncodedFormEntity urlEncoded = new UrlEncodedFormEntity(params,CHARSET_UTF8);HttpPost httpPost = new HttpPost(url);httpPost.setEntity(urlEncoded);HttpClient client = getHttpClient(context);HttpResponse response = client.execute(httpPost);if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {throw new RuntimeException("请求失败");}HttpEntity resEntity = response.getEntity();return (resEntity == null) ? null : EntityUtils.toString(resEntity,CHARSET_UTF8);} catch (UnsupportedEncodingException e) {Log.w(TAG, e.getMessage());return null;} catch (ClientProtocolException e) {Log.w(TAG, e.getMessage());return null;} catch (IOException e) {throw new RuntimeException(context.getResources().getString(R.string.httpError), e);} }public static String getFromWebByHttpClient(Context context, String url,NameValuePair... nameValuePairs) throws Exception{log.d("getFromWebByHttpClient url = " + url);try {// http地址// String httpUrl =// "http://192.168.1.110:8080/httpget.jsp?par=HttpClient_android_Get";StringBuilder sb = new StringBuilder();sb.append(url);if (nameValuePairs != null && nameValuePairs.length > 0) {sb.append("?");for (int i = 0; i < nameValuePairs.length; i++) {if (i > 0) {sb.append("&");}sb.append(String.format("%s=%s",nameValuePairs[i].getName(),nameValuePairs[i].getValue()));}}// HttpGet连接对象HttpGet httpRequest = new HttpGet(sb.toString());// 取得HttpClient对象HttpClient httpclient = getHttpClient(context);// 请求HttpClient,取得HttpResponseHttpResponse httpResponse = httpclient.execute(httpRequest);// 请求成功if (httpResponse.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {throw new RuntimeException(context.getResources().getString(R.string.httpError));}return EntityUtils.toString(httpResponse.getEntity());} catch (ParseException e) {// TODO Auto-generated catch blockthrow new RuntimeException(context.getResources().getString(R.string.httpError),e);} catch (IOException e) {// TODO Auto-generated catch blocklog.e("IOException ");e.printStackTrace();throw new RuntimeException(context.getResources().getString(R.string.httpError),e);} }/** * 创建httpClient实例 *  * @return * @throws Exception */private static synchronized HttpClient getHttpClient(Context context) {if (null == customerHttpClient) {HttpParams params = new BasicHttpParams();// 设置一些基本参数HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);HttpProtocolParams.setContentCharset(params, CHARSET_UTF8);HttpProtocolParams.setUseExpectContinue(params, true);HttpProtocolParams.setUserAgent(params,"Mozilla/5.0(Linux;U;Android 2.2.1;en-us;Nexus One Build.FRG83) "+ "AppleWebKit/553.1(KHTML,like Gecko) Version/4.0 Mobile Safari/533.1");// 超时设置/* 从连接池中取连接的超时时间 */ConnManagerParams.setTimeout(params, 1000);/* 连接超时 */int ConnectionTimeOut = 3000;if (!HttpUtils.isWifiDataEnable(context)) {ConnectionTimeOut = 10000;}HttpConnectionParams.setConnectionTimeout(params, ConnectionTimeOut);/* 请求超时 */HttpConnectionParams.setSoTimeout(params, 4000);// 设置我们的HttpClient支持HTTP和HTTPS两种模式SchemeRegistry schReg = new SchemeRegistry();schReg.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));schReg.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));// 使用线程安全的连接管理来创建HttpClientClientConnectionManager conMgr = new ThreadSafeClientConnManager(params, schReg);customerHttpClient = new DefaultHttpClient(conMgr, params);}return customerHttpClient;}}

更多相关文章

  1. [Android5.1]ContentProvider的Binder通信分析
  2. Android网络开发之WIFI
  3. Android(安卓)RIL源码研究笔记 の ril_command (一)
  4. android sql语句大全
  5. Android微信智能心跳方案
  6. 告别 USB,用 wifi 进行 Android(安卓)真机调试
  7. 用fiddler做代理服务器转发请求
  8. Android(安卓)网络请求框架Volley实例详解
  9. 如何在Root的手机上开启ViewServer,使得HierachyViewer能够连接

随机推荐

  1. android MediaPlayer详解
  2. android Button 切换背景,实现动态按钮和
  3. Android(安卓)Display System --- Surfac
  4. [整理]学习Android的博客和网站
  5. Android(安卓)文字阴影、layer-list、sha
  6. Android基础UI篇------TextView及其子类
  7. android手机屏幕适配方法
  8. android----UI组件
  9. Android基础知识之Manifest文件的组织结
  10. Android教程之Android(安卓)SDK1.5模拟器