httpurlconnection与httpclient的使用

一、HttpURLConnection的使用:
四个基本功能:访问网页、下载图片、下载文件、上传文件

1.访问网页

(1)get方式:

/** 
     * 获取指定URL的响应字符串 
     * @param urlString 
     * @return 
     */  
    private String getURLResponse(String urlString){  
        HttpURLConnection conn = null; //连接对象  
        InputStream is = null;  
        String resultData = "";  
        try {  
            URL url = new URL(urlString); //URL对象  
            conn = (HttpURLConnection)url.openConnection(); //使用URL打开一个链接  
            conn.setDoInput(true); //允许输入流,即允许下载  
            conn.setDoOutput(true); //允许输出流,即允许上传  
            conn.setUseCaches(false); //不使用缓冲  
            conn.setRequestMethod("GET"); //使用get请求  
            is = conn.getInputStream();   //获取输入流,此时才真正建立链接  
            InputStreamReader isr = new InputStreamReader(is);  
            BufferedReader bufferReader = new BufferedReader(isr);  
            String inputLine  = "";  
            while((inputLine = bufferReader.readLine()) != null){  
                resultData += inputLine + "\n";  
            }  

        } catch (MalformedURLException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        }catch (IOException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        }finally{  
            if(is != null){  
                try {  
                    is.close();  
                } catch (IOException e) {  
                    // TODO Auto-generated catch block  
                    e.printStackTrace();  
                }  
            }  
            if(conn != null){  
                conn.disconnect();  
            }  
        }  

        return resultData;  
    } 

(2)post方式

2.下载图片

(1)get方式

/** 
     * 从指定URL获取图片 
     * @param url 
     * @return 
     */  
    private Bitmap getImageBitmap(String url){  
        URL imgUrl = null;  
        Bitmap bitmap = null;  
        try {  
            imgUrl = new URL(url);  
            HttpURLConnection conn = (HttpURLConnection)imgUrl.openConnection();  
            conn.setDoInput(true);  
            conn.connect();  
            InputStream is = conn.getInputStream();  
            bitmap = BitmapFactory.decodeStream(is);  
            is.close();  
        } catch (MalformedURLException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        }catch(IOException e){  
            e.printStackTrace();  
        }  
        return bitmap;  
    }

(2)post方式

3.下载文件

(1)get方式

(2)post方式

4.上传文件

(1)get方式

(2)post方式

以前的代码:

/* 
     * URL请求的类别分为二类,GET与POST请求。二者的区别在于:  
     * a:) get请求可以获取静态页面,也可以把参数放在URL字串后面,传递给servlet,  
     * b:) post与get的不同之处在于post的参数不是放在URL字串里面,而是放在http请求的正文内。 
     */  

    URL url = new URL("http://localhost:8080/TestHttpURLConnectionPro.do");  
    HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();  

    // 设置是否向httpUrlConnection输出,因为这个是post请求,参数要放在  
    // http正文内,因此需要设为true, 默认情况下是false;  
    urlConn.setDoOutput(true);  

    // 设置是否从httpUrlConnection读入,默认情况下是true;  
    urlConn.setDoInput(true);  

    // Post 请求不能使用缓存  
    urlConn.setUseCaches(false);  

    // 设定传送的内容类型是可序列化的java对象  
    // (如果不设此项,在传送序列化对象时,当WEB服务默认的不是这种类型时可能抛java.io.EOFException)  
    urlConn.setRequestProperty("Content-type","application/x-java-serialized-object");  

    // 设定请求的方法为"POST",默认是GET  
    urlConn.setRequestMethod("POST");  

    // 连接,上面对urlConn的所有配置必须要在connect之前完成,  
    urlConn.connect();  

    // 此处getOutputStream会隐含的进行connect (即:如同调用上面的connect()方法,  
    // 所以在开发中不调用上述的connect()也可以)。  
    OutputStream outStrm = urlConn.getOutputStream();  

    // 现在通过输出流对象构建对象输出流对象,以实现输出可序列化的对象。  
    ObjectOutputStream oos = new ObjectOutputStream(outStrm);  

    // 向对象输出流写出数据,这些数据将存到内存缓冲区中  
    oos.writeObject(new String("我是测试数据"));  

    // 刷新对象输出流,将任何字节都写入潜在的流中(些处为ObjectOutputStream)  
    oos.flush();  

    // 关闭流对象。此时,不能再向对象输出流写入任何数据,先前写入的数据存在于内存缓冲区中,  
    // 再调用下边的getInputStream()函数时才把准备好的http请求正式发送到服务器  
    oos.close();  

    // 调用HttpURLConnection连接对象的getInputStream()函数,  
    // 将内存缓冲区中封装好的完整的HTTP请求电文发送到服务端。  
    InputStream inStrm = urlConn.getInputStream(); // <===注意,实际发送请求的代码段就在这里  

//----------------------------------  
    /* 
     * Post传参的方法 
     */  
    OutputStream os = urlConn.getOutputStream();  
    String param = new String();  
    param = "CorpID=123&LoginName=qqq&name=" + URLEncoder.encode("汉字","GBK"); ;  
    os.write(param.getBytes());  

//----------------------------------  
    /* 
     * 超时设置,防止 网络异常的情况下,可能会导致程序僵死而不继续往下执行 
     */  

    //JDK 1.5以前的版本,只能通过设置这两个系统属性来控制网络超时:  
    //连接主机的超时时间(单位:毫秒)  
    System.setProperty("sun.net.client.defaultConnectTimeout", "30000");   
    //从主机读取数据的超时时间(单位:毫秒)  
    System.setProperty("sun.net.client.defaultReadTimeout", "30000");   

    //在JDK 1.5以后可以这样来设置超时时间  
    HttpURLConnection urlCon = (HttpURLConnection)url.openConnection();  
    urlCon.setConnectTimeout(30000);  
    urlCon.setReadTimeout(30000);  

//----------------------------------  
    /* 
     * 总结: 
     * HttpURLConnection的connect()函数,实际上只是建立了一个与服务器的tcp连接,并没有实际发送http请求。 
     * 无论是post还是get,http请求实际上直到HttpURLConnection的getInputStream()这个函数里面才正式发送出去。 
     *  
     * 对HttpURLConnection对象的一切配置都必须要在connect()函数执行之前完成。 
     * 而对outputStream的写操作,又必须要在inputStream的读操作之前。 
     * 这些顺序实际上是由http请求的格式决定的。 
     *  
     * 在http头后面紧跟着的是http请求的正文,正文的内容是通过outputStream流写入的, 
     * 实际上outputStream不是一个网络流,充其量是个字符串流,往里面写入的东西不会立即发送到网络, 
     * 而是存在于内存缓冲区中,待outputStream流关闭时,根据输入的内容生成http正文。 
     * 至此,http请求的东西已经全部准备就绪。在getInputStream()函数调用的时候,就会把准备好的http请求 
     * 正式发送到服务器了,然后返回一个输入流,用于读取服务器对于此次http请求的返回信息。由于http 
     * 请求在getInputStream的时候已经发送出去了(包括http头和正文),因此在getInputStream()函数 
     * 之后对connection对象进行设置(对http头的信息进行修改)或者写入outputStream(对正文进行修改) 
     * 都是没有意义的了,执行这些操作会导致异常的发生。 
     *  
     */  

二、httpclient的使用

// 生成一个httpclient对象
        HttpClient httpclient = new DefaultHttpClient();
        String ajaxUrl = Constant.url + "getToolsByobjId?objID=" + toolId;
        HttpGet httpget = new HttpGet(ajaxUrl);
        httpget.addHeader(new BasicHeader("Cookie", "JSESSIONID=" + sessionId));
        try {
            HttpResponse response = httpclient.execute(httpget);
            int code = response.getStatusLine().getStatusCode();
            if (code == HttpStatus.SC_OK) {
                String strResult = EntityUtils.toString(response.getEntity());
                JSONObject object = new JSONObject(strResult);
                map = new HashMap<String, String>();
                map.put("toolCurrentVersionID",
                        object.getString("toolCurrentVersionID"));
                map.put("tvID", object.getString("tvID"));
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (JSONException e) {
            e.printStackTrace();
        } finally {
            if (httpclient != null) {
                // 关闭连接.
                httpclient.getConnectionManager().shutdown();
            }
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值