Http学习之使用HttpURLConne…


上 节说道,post请求的OutputStream实际上不是网络流,而是写入内存,在getInputStream中才真正把写道流里面的内容作为正文与 根据之前的配置生成的http request头合并成真正的http request,并在此时才真正向服务器发送。

HttpURLConnection.setChunkedStreamingMode 函数可以改变这个模式,设置了ChunkedStreamingMode后,不再等待OutputStream关闭后生成完整的http request一次过发送,而是先发送http request头,正文内容则是网路流的方式实时传送到服务器。实际上是不告诉服务器http正文的长度,这种模式适用于向服务器传送较大的或者是不容易 获取长度的数据,如文件。下面以一段代码讲解一下,请与 Http学习之使用HttpURLConnection发送post和get请求中的readContentFromPost()函数作对比:
     public   static   void  readContentFromChunkedPost()  throws  IOException  {
        URL postUrl 
= new URL(POST_URL);
        HttpURLConnection connection 
= (HttpURLConnection) postUrl
                .openConnection();
        connection.setDoOutput(
true);
        connection.setDoInput(
true);
        connection.setRequestMethod(
"POST");
        connection.setUseCaches(
false);
        connection.setInstanceFollowRedirects(
true);
        connection.setRequestProperty(
"Content-Type",
                
"application/x-www-form-urlencoded");
        

        connection.setChunkedStreamingMode(
5);
        connection.connect();
        

        DataOutputStream out 
= new DataOutputStream(connection
                .getOutputStream());
        String content 
= "firstname=" + URLEncoder.encode("一个大肥人                                                                               " +
                
"                                          " +
                
"asdfasfdasfasdfaasdfasdfasdfdasfs""utf-8");
        out.writeBytes(content); 

        out.flush();
        out.close(); 
// 到此时服务器已经收到了完整的http request了,而在readContentFromPost()函数里,要等到下一句服务器才能收到http请求。
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                connection.getInputStream()));
        
        out.flush();
        out.close(); 
// flush and close
        String line;
        System.out.println(
"=============================");
        System.out.println(
"Contents of post request");
        System.out.println(
"=============================");
        
while ((line = reader.readLine()) != null{
            System.out.println(line);
        }

        System.out.println(
"=============================");
        System.out.println(
"Contents of post request ends");
        System.out.println(
"=============================");
        reader.close();
        connection.disconnect();
    }

   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值