`
熊滔爱孟涛静
  • 浏览: 124658 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Http

阅读更多

使用 HTTP 服务:

1.
Apache HttpClinet
Http GET
Http POST


a.创建 HttpClient
b.初始 HTTP GET 方法或 POST 方法.
c.设置参数 键值对
d.执行 HTTP 调用
e.处理 HTTP 回复

HTTP GET 示例:

Java代码
  1. public class TestHttpGetMethod{   
  2.     public void get(){   
  3.         BufferedReader in = null;   
  4.   
  5.         try{   
  6.             HttpClient client = new DefaultHttpClient();   
  7.             HttpGet request = new HttpGet();   
  8.             request.setURI("http://w26.iteye.com");   
  9.             HttpResponse response = client.execute(request);   
  10.                
  11.             in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));      
  12.             StringBuffer sb = new StringBuffer("");    
  13.             String line = "";   
  14.             String NL = System.getProperty("line.separator");   
  15.             while((line = in.readLine()) != null){   
  16.                 sb.append(line + NL);   
  17.             }   
  18.             in.close();   
  19.             String page = sb.toString();   
  20.   
  21.             Log.i(TAG, page);   
  22.   
  23.   
  24.   
  25.         }catch(Exception e){   
  26.             Log.e(TAG,e.toString())   
  27.         }finally{   
  28.             if(in != null){   
  29.                 try{   
  30.                     in.close();   
  31.                 }catch(IOException ioe){   
  32.                     Log.e(TAG, ioe.toString());   
  33.                 }   
  34.             }   
  35.   
  36.         }   
  37.     }   
  38. }  
public class TestHttpGetMethod{
    public void get(){
        BufferedReader in = null;

        try{
            HttpClient client = new DefaultHttpClient();
            HttpGet request = new HttpGet();
            request.setURI("http://w26.iteye.com");
            HttpResponse response = client.execute(request);
            
            in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));   
            StringBuffer sb = new StringBuffer(""); 
            String line = "";
            String NL = System.getProperty("line.separator");
            while((line = in.readLine()) != null){
                sb.append(line + NL);
            }
            in.close();
            String page = sb.toString();

            Log.i(TAG, page);



        }catch(Exception e){
            Log.e(TAG,e.toString())
        }finally{
            if(in != null){
                try{
                    in.close();
                }catch(IOException ioe){
                    Log.e(TAG, ioe.toString());
                }
            }

        }
    }
}




带参数的 HTTP GET:

Java代码
  1. HttpGet request = new HttpGet("http://www.baidu.com/s?wd=amos_tl");   
  2. client.execute(request);  
HttpGet request = new HttpGet("http://www.baidu.com/s?wd=amos_tl");
client.execute(request);



HTTP POST 示例:

Java代码
  1. public class TestHttpPostMethod{   
  2.     public void post(){   
  3.         BufferedReader in = null;   
  4.   
  5.         try{   
  6.             HttpClient client = new DefaultHttpClient();   
  7.             HttpPost request = new HttpPost("http://localhost/upload.jsp");   
  8.   
  9.             List<NameValuePair> postParams = new ArrayList<NameValuePair>();   
  10.             postParams.add(new BasicNameValuePair("filename""sex.mov"));   
  11.                
  12.             UrlEncodeFormEntity formEntity = new UrlEncodeFormEntity(postParams);   
  13.             request.setEntity(formEntity);   
  14.                
  15.             HttpResponse response = client.execute(request);   
  16.   
  17.             in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));      
  18.             StringBuffer sb = new StringBuffer("");    
  19.             String line = "";   
  20.             String NL = System.getProperty("line.separator");   
  21.             while((line = in.readLine()) != null){   
  22.                 sb.append(line + NL);   
  23.             }   
  24.             in.close();   
  25.             String result = sb.toString();   
  26.             Log.i(TAG, result );   
  27.   
  28.         }catch(Exception e){   
  29.             Log.e(TAG,e.toString())   
  30.         }finally{   
  31.             if(in != null){   
  32.                 try{   
  33.                     in.close();   
  34.                 }catch(IOException ioe){   
  35.                     Log.e(TAG, ioe.toString());   
  36.                 }   
  37.             }   
  38.   
  39.         }   
  40.     }   
  41. }  
public class TestHttpPostMethod{
    public void post(){
        BufferedReader in = null;

        try{
            HttpClient client = new DefaultHttpClient();
            HttpPost request = new HttpPost("http://localhost/upload.jsp");

            List<NameValuePair> postParams = new ArrayList<NameValuePair>();
            postParams.add(new BasicNameValuePair("filename", "sex.mov"));
            
            UrlEncodeFormEntity formEntity = new UrlEncodeFormEntity(postParams);
            request.setEntity(formEntity);
            
            HttpResponse response = client.execute(request);

            in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));   
            StringBuffer sb = new StringBuffer(""); 
            String line = "";
            String NL = System.getProperty("line.separator");
            while((line = in.readLine()) != null){
                sb.append(line + NL);
            }
            in.close();
            String result = sb.toString();
            Log.i(TAG, result );

        }catch(Exception e){
            Log.e(TAG,e.toString())
        }finally{
            if(in != null){
                try{
                    in.close();
                }catch(IOException ioe){
                    Log.e(TAG, ioe.toString());
                }
            }

        }
    }
}






multipart POST 支持:

需要以下支持:
Commons IO
http://commons.apache.org/io/

Mime4j
http://james.apache.org/mime4j/

HttpMime
http://hc.apache.org/httpcomponents-client/httpmime/index.html

下载全部JAR网址:
http://www.sayedhashimi.com/downloads/android/multipart-android.zip



multipart POST 示例:

Java代码
  1.   
  2. public class TestHttpMultipartPost{   
  3.     public void mulPost(){   
  4.     try{   
  5.         InputStram in = this.getAssets().open("data.xml");     
  6.         HttpClient client = new HttpDefaultHttpClient();   
  7.         HttpPost request = new HttpPost("http://localhost/upload.jsp");   
  8.         byte[] data = IOUtils.toByteArray(in);   
  9.         InputStreamBody isb = new InputStreamBody(new ByteArrayIntputStream(data), "uploadedFile");    
  10.         StringBody sb1 = new StringBody("some text");         
  11.         StringBoyd sb2 = new StringBody("some text too");   
  12.   
  13.         MultipartEntity me = new MultipartEntity();   
  14.         me.addPart("uploadedFile", isb);   
  15.         me.addPart("one" ,sb1);   
  16.         me.addPart("two" ,sb2);   
  17.     
  18.         request.setEntity(me);   
  19.         HttpRespones response = client.excute(request);   
  20.         res.getEntity().getContent().close();   
  21.            
  22.     } catch(Throwable e){   
  23.         Log.e(TAG, e.toString());   
  24.     }   
  25.   
  26.     }   
  27.   
  28. }  
public class TestHttpMultipartPost{
    public void mulPost(){
    try{
        InputStram in = this.getAssets().open("data.xml");  
        HttpClient client = new HttpDefaultHttpClient();
        HttpPost request = new HttpPost("http://localhost/upload.jsp");
        byte[] data = IOUtils.toByteArray(in);
        InputStreamBody isb = new InputStreamBody(new ByteArrayIntputStream(data), "uploadedFile"); 
        StringBody sb1 = new StringBody("some text");      
        StringBoyd sb2 = new StringBody("some text too");

        MultipartEntity me = new MultipartEntity();
        me.addPart("uploadedFile", isb);
        me.addPart("one" ,sb1);
        me.addPart("two" ,sb2);
 
        request.setEntity(me);
        HttpRespones response = client.excute(request);
        res.getEntity().getContent().close();
        
    } catch(Throwable e){
        Log.e(TAG, e.toString());
    }

    }

}


异常处理
    重试处理

多线程问题
    使用 ClientConnectionManager ,创建一个线程安全的 HttpClient.

Java代码
  1. public class ApplicationEx extends Application{   
  2.     public static final String TAG = "amos_tl";   
  3.     private HttpClient client = null;   
  4.   
  5.     @override  
  6.     public void onCreate(){   
  7.         super.onCreate();   
  8.         client = createHttpClient();   
  9.     }   
  10.   
  11.     @override    
  12.     public void onLowMemory(){   
  13.         super.onLowMemory();   
  14.         shutdownHttpClient();   
  15.     }   
  16.   
  17.     @override  
  18.     public void onTerminate(){   
  19.         super.onTerminate();   
  20.         shutdownHttpClient();   
  21.     }   
  22.   
  23.     private void shutdownHttpClient(){   
  24.         if(client != null && client.getConnectionManager() != null){   
  25.             client.getConnectionManager().shutdown();   
  26.             client = null;   
  27.         }   
  28.     }   
  29.        
  30.     private HttpClient createHttpClient(){   
  31.         Log.d(TAG, "create httpclient ...");   
  32.         HttpParams params = new BasicHttpParams();   
  33.         HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);   
  34.         HttpProtocolParams.setContentCharset(params, HTTP.DEFAULT_CONTENT_CHARSET);   
  35.         HttpProtocolParams.setUseExpectContinue(params, true);   
  36.         SchemaRegistry sr = new SchemaRegistry();   
  37.         sr.register(new Schema("http", PlainSocketFactory.getSocketFactory(), 80));   
  38.         sr.register(new Schema("https", SLLSocketFactory.getSocketFactory(), 443));   
  39.         ClientConnectionManager cm = new ThreadSafeClientConnManager(params, sr);   
  40.   
  41.         return new DefaultHttpClient(cm, params);   
  42.     }       
  43.   
  44.     public HttpClient getHttpClient(){   
  45.         return client;   
  46.     }   
  47.        
  48.         
  49. }  
public class ApplicationEx extends Application{
    public static final String TAG = "amos_tl";
    private HttpClient client = null;

    @override
    public void onCreate(){
        super.onCreate();
        client = createHttpClient();
    }

    @override 
    public void onLowMemory(){
        super.onLowMemory();
        shutdownHttpClient();
    }

    @override
    public void onTerminate(){
        super.onTerminate();
        shutdownHttpClient();
    }

    private void shutdownHttpClient(){
        if(client != null && client.getConnectionManager() != null){
            client.getConnectionManager().shutdown();
            client = null;
        }
    }
    
    private HttpClient createHttpClient(){
        Log.d(TAG, "create httpclient ...");
        HttpParams params = new BasicHttpParams();
        HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
        HttpProtocolParams.setContentCharset(params, HTTP.DEFAULT_CONTENT_CHARSET);
        HttpProtocolParams.setUseExpectContinue(params, true);
        SchemaRegistry sr = new SchemaRegistry();
        sr.register(new Schema("http", PlainSocketFactory.getSocketFactory(), 80));
        sr.register(new Schema("https", SLLSocketFactory.getSocketFactory(), 443));
        ClientConnectionManager cm = new ThreadSafeClientConnManager(params, sr);

        return new DefaultHttpClient(cm, params);
    }    

    public HttpClient getHttpClient(){
        return client;
    }
    
     
}


HttpActivity.java

Java代码
  1. public class HttpActivity extends Activity{   
  2.     @override  
  3.     public void onCreate(Bundle savedInstanceState){   
  4.         super.onCreate(savedInstanceState);   
  5.         Log.d(TAG, "httpactivity startup...");   
  6.         getHttpContent();   
  7.     }   
  8.        
  9.     private void getHttpContent(){   
  10.         try{   
  11.             ApplicationEx app = (ApplicationEx)this.getApplication();   
  12.             HttpClient client = app.getHttpClient();   
  13.             HttpGet request = new HttpGet();   
  14.             request.setURI("http://w26.iteye.com");   
  15.             HttpResponse response = client.excute(resquest);   
  16.   
  17.             String page = EntityUtils.toString(response.getEntity());   
  18.             Log.i(TAG, page);   
  19.         }catch(Exception e){   
  20.              Log.e(TAG, e.toString());   
  21.         }    
  22.     }   
  23.   
  24.   
  25.    }  
分享到:
评论

相关推荐

    httppost和httpget需要的jar包

    在Java编程中,HTTP POST和GET是两种基本的HTTP请求方法,用于客户端向服务器发送数据。为了在Java中实现这些功能,我们需要引入特定的库,这些库通常被打包成JAR(Java Archive)文件。本篇文章将详细讲解HTTP POST...

    org.apache.http.httpentity jar包-系列jar包

    import org.apache.http.client.methods.HttpPost; import org.apache.http.conn.scheme.Scheme; import org.apache.http.conn.ssl.SSLSocketFactory; import org.apache.http.impl.client.DefaultHttpClient; ...

    httpcore-4.3.2.jar和httpmime-4.3.5.jar

    《深入理解HTTPCore与HTTPMIME:构建高效网络通信》 HTTPCore与HTTPMIME是Apache HttpClient库中的核心组件,这两个jar包在Java开发者中有着广泛的应用,尤其在处理HTTP请求和响应时不可或缺。本篇将详细介绍这两个...

    VC通过HttpGet和HttpPost方式与WebService通信,解析返回的Json

    在这个特定的场景中,我们关注的是如何利用VC通过HttpGet和HttpPost方法与WebService进行交互,并处理返回的Json数据。 HttpGet和HttpPost是HTTP协议中的两种主要请求方法。HttpGet是一种无状态、幂等的请求方法,...

    httpcore jar包

    1. **HTTP协议支持**:httpcore提供了对HTTP/1.0和HTTP/1.1协议的支持,包括GET、POST等各种HTTP方法,以及头部处理、状态码解析等。 2. **连接管理**:它包含连接池(Connection Pooling)功能,可以复用HTTP连接...

    org.apache.http包

    import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.HttpVersion; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; ...

    org.apache.http jar包

    org.apache.http jar包 import org.apache.http.Header; import org.apache.http.HttpException; import org.apache.http.HttpRequest; import org.apache.http.HttpRequestInterceptor; import org....

    HTTP协议详解及RFC2616(HTTP)中文版

    **HTTP协议详解** HTTP(Hypertext Transfer Protocol)超文本传输协议是互联网上应用最广泛的一种网络协议。它是用于从万维网服务器传输超文本到本地浏览器的传输协议,是Web应用的基础。HTTP协议定义了客户端...

    C++实现HTTP请求

    在IT行业中,网络通信是软件开发的一个重要领域,而HTTP(超文本传输协议)作为互联网上应用最广泛的一种网络协议,被广泛应用于网页浏览、数据传输等场景。本篇文章将详细探讨如何使用C++来实现HTTP的POST和GET请求...

    构建一个简单的HTTP服务器的C#程序实例Ky_HttpServer.rar

    构建一个简单的HTTP服务器的C#程序实例。实现响应GET、POST请求。在服务端创建一个tcp通信来负责监听客户端连接。每次客户端发出请求后,我们根据请问报文来判断客户端的请求类型,然后根据不同的请求类型进行相应的...

    VB做的HTTP简单服务器源码

    标题 "VB做的HTTP简单服务器源码" 描述的是一个使用Visual Basic(VB)编程语言编写的简易HTTP服务器的源代码。这个服务器能够响应HTTP请求,为客户端提供服务,可能是为了教学目的或者作为小型项目的起点。VB是一种...

    vc++HTTP客户端与服务端源代码

    在IT行业中,网络通信是至关重要的一个领域,而HTTP(超文本传输协议)作为网络通信的基础,被广泛应用于Web应用程序的开发。在这个场景下,我们关注的是使用VC++(Microsoft Visual C++)来实现HTTP客户端和服务器...

    图解HTTP,图解HTTP

    ### 图解HTTP:全面解析HTTP协议 #### 一、引言 HTTP协议作为互联网的核心组成部分,对于每一个从事Web开发或维护的技术人员来说都是必须掌握的基础知识。《图解HTTP》一书通过丰富的图表和深入浅出的文字解释,...

    org.apache.http 相关的jar包

    import org.apache.http.Header; import org.apache.http.HttpException; import org.apache.http.HttpRequest; import org.apache.http.HttpRequestInterceptor; import org.apache.http.HttpResponse; import...

    C++编写的Linux下Http请求

    在IT领域,网络编程是不可或缺的一部分,特别是在操作系统如Linux中,开发者经常需要通过HTTP协议进行数据交换。本篇将深入探讨使用C++在Linux环境下实现HTTP请求,包括GET和POST方法。 HTTP(超文本传输协议)是...

    org.apache.http源代码和jar包

    import org.apache.http.Header; import org.apache.http.HttpException; import org.apache.http.HttpRequest; import org.apache.http.HttpRequestInterceptor; import org.apache.http.HttpResponse; import org....

    c# http接口设计及调用demo

    在本示例中,我们将关注的是"C# HTTP接口设计及调用demo",这通常涉及到如何创建一个HTTP服务端接口,以及如何使用C#客户端进行调用。HTTP接口在分布式系统中扮演着重要角色,它允许不同组件之间通过HTTP协议交换...

    网络编程HttpServer c++实现

    在本项目中,"网络编程HttpServer c++实现" 是一个使用C++语言编写的HTTP服务器,它允许用户创建和管理基于HTTP协议的服务。HTTP服务器是互联网上的关键组件,它们接收HTTP请求并返回HTTP响应,使得网页和其他资源...

    VC++ HTTP Get Post请求

    在VC++编程环境中,HTTP(超文本传输协议)Get和Post请求是常见的网络通信方法,用于从或向服务器发送数据。这两个方法是Web应用程序与服务器交互的基础,理解它们的工作原理和如何在VC++中实现至关重要。 **HTTP ...

Global site tag (gtag.js) - Google Analytics