[Java] URLConnection的Post实时模式

博客首页 » Java URLConnection的Post实时模式

发布于 27 Jan 2015 08:21
标签 blog
URLConnection的post请求的OutputStream实际上不是网络流,而是写入内存。为了实现实时模式,需要设置setChunkedStreamingMode。

Http学习之使用HttpURLConnection发送post请求深入

http://blog.csdn.net/pandazxx/article/details/1660008

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");
        /*
         * 与readContentFromPost()最大的不同,设置了块大小为5字节
         */
        connection.setChunkedStreamingMode(5);
        connection.connect();
        /*
         * 注意,下面的getOutputStream函数工作方式于在readContentFromPost()里面的不同
         * 在readContentFromPost()里面该函数仍在准备http request,没有向服务器发送任何数据
         * 而在这里由于设置了ChunkedStreamingMode,getOutputStream函数会根据connect之前的配置
         * 生成http request头,先发送到服务器。
         */
        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();
    }

本页面的文字允许在知识共享 署名-相同方式共享 3.0协议和GNU自由文档许可证下修改和再使用,仅有一个特殊要求,请用链接方式注明文章引用出处及作者。请协助维护作者合法权益。


系列文章

文章列表

  • Java URLConnection的Post实时模式

这篇文章对你有帮助吗,投个票吧?

rating: 0+x

留下你的评论

Add a New Comment
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License