`

使用HttpURLConnection发送post和get请求

 
阅读更多
    package test;  
     
    import java.io.BufferedReader;  
    import java.io.DataOutputStream;  
    import java.io.IOException;  
    import java.io.InputStreamReader;  
    import java.net.HttpURLConnection;  
    import java.net.URL;  
    import java.net.URLEncoder;  
     
    public class HttpURLConnectionTest {  
     
         public static final String GET_URL = "http://localhost:8080/welcome1";  
     
         public static final String POST_URL = "http://localhost:8080/welcome1";  
     
         public static void readContentFromGet() throws IOException {  
             // 拼凑get请求的URL字串,使用URLEncoder.encode对特殊和不可见字符进行编码  
             String getURL = GET_URL + "?username=" 
                     + URLEncoder.encode("fat man", "utf-8");  
             URL getUrl = new URL(getURL);  
             // 根据拼凑的URL,打开连接,URL.openConnection函数会根据URL的类型,  
             // 返回不同的URLConnection子类的对象,这里URL是一个http,因此实际返回的是HttpURLConnection  
             HttpURLConnection connection = (HttpURLConnection) getUrl  
                     .openConnection();  
             // 进行连接,但是实际上get request要在下一句的connection.getInputStream()函数中才会真正发到  
             // 服务器  
             connection.connect();  
             // 取得输入流,并使用Reader读取  
             BufferedReader reader = new BufferedReader(new InputStreamReader(  
                     connection.getInputStream()));  
             System.out.println("=============================");  
             System.out.println("Contents of get request");  
             System.out.println("=============================");  
             String lines;  
             while ((lines = reader.readLine()) != null) {  
                 System.out.println(lines);  
             }  
             reader.close();  
             // 断开连接  
             connection.disconnect();  
             System.out.println("=============================");  
             System.out.println("Contents of get request ends");  
             System.out.println("=============================");  
         }  
     
         public static void readContentFromPost() throws IOException {  
             // Post请求的url,与get不同的是不需要带参数  
             URL postUrl = new URL(POST_URL);  
             // 打开连接  
             HttpURLConnection connection = (HttpURLConnection) postUrl  
                     .openConnection();  
             // Output to the connection. Default is  
             // false, set to true because post  
             // method must write something to the  
             // connection  
             // 设置是否向connection输出,因为这个是post请求,参数要放在  
             // http正文内,因此需要设为true  
             connection.setDoOutput(true);  
             // Read from the connection. Default is true.  
             connection.setDoInput(true);  
             // Set the post method. Default is GET  
             connection.setRequestMethod("POST");  
             // Post cannot use caches  
             // Post 请求不能使用缓存  
             connection.setUseCaches(false);  
             // This method takes effects to  
             // every instances of this class.  
             // URLConnection.setFollowRedirects是static函数,作用于所有的URLConnection对象。  
             // connection.setFollowRedirects(true);  
     
             // This methods only  
             // takes effacts to this  
             // instance.  
             // URLConnection.setInstanceFollowRedirects是成员函数,仅作用于当前函数  
             connection.setInstanceFollowRedirects(true);  
             // Set the content type to urlencoded,  
             // because we will write  
             // some URL-encoded content to the  
             // connection. Settings above must be set before connect!  
             // 配置本次连接的Content-type,配置为application/x-www-form-urlencoded的  
             // 意思是正文是urlencoded编码过的form参数,下面我们可以看到我们对正文内容使用URLEncoder.encode  
             // 进行编码  
             connection.setRequestProperty("Content-Type",  
                    "application/x-www-form-urlencoded");  
             // 连接,从postUrl.openConnection()至此的配置必须要在connect之前完成,  
             // 要注意的是connection.getOutputStream会隐含的进行connect。  
             connection.connect();  
             DataOutputStream out = new DataOutputStream(connection  
                     .getOutputStream());  
             // The URL-encoded contend  
             // 正文,正文内容其实跟get的URL中'?'后的参数字符串一致  
             String content = "firstname=" + URLEncoder.encode("一个大肥人", "utf-8");  
             // DataOutputStream.writeBytes将字符串中的16位的unicode字符以8位的字符形式写道流里面  
             out.writeBytes(content);  
     
             out.flush();  
             out.close(); // flush and close  
             BufferedReader reader = new BufferedReader(new InputStreamReader(  
                     connection.getInputStream()));  
             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();  
         }  
     
         /**  
          * @param args  
          */  
         public static void main(String[] args) {  
             
             try {  
                 readContentFromGet();  
                 readContentFromPost();  
             } catch (IOException e) {  
             
                 e.printStackTrace();  
             }  
         }  
    } 
分享到:
评论

相关推荐

    Http学习之使用HttpURLConnection发送post和get请求 android

    本篇文章主要聚焦于使用`HttpURLConnection`类来发送POST和GET请求,这是Android SDK内置的一种HTTP请求方法,相较于第三方库如OkHttp或Volley,使用`HttpURLConnection`更轻量级,易于理解和控制。 首先,我们先...

    java使用url发送post和get请求:HttpConnUtils.jar

    GET请求通常用于获取数据,而POST请求用于提交数据。`HttpConnUtils.jar`是一个Java工具类库,它简化了通过URL执行这两种HTTP请求的过程,并允许传递参数。下面我们将详细探讨如何使用此类库以及相关的HTTP基础知识...

    java发送post和get请求源码及jar包

    以下是一个简单的使用HttpURLConnection发送GET请求的示例: ```java import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; public class...

    android使用Java原生httpUrlConnection进行get请求

    在这个场景下,我们将详细探讨如何使用Java原生的HttpURLConnection实现一个GET请求。 首先,我们需要了解GET请求的基本原理。GET请求是最常见的HTTP方法,用于从服务器获取资源。它将参数附加到URL中,以便服务器...

    java发送http/https请求(get/post)代码

    下面是一个简单的GET请求示例: ```java URL url = new URL("http://example.com"); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); ...

    网络请求----HttpURLConnection的get,post和图片加载

    使用HttpURLConnection进行GET请求,主要步骤包括: - 创建URL对象并打开连接:`URL url = new URL("http://example.com"); HttpURLConnection conn = (HttpURLConnection) url.openConnection();` - 设置请求方法...

    java http 发送 put delete post get请求

    使用HttpURLConnection发送POST请求的示例: ```java URL url = new URL("http://example.com/resource"); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection....

    androd httpurlconnection(工具类) get post t

    这个Demo主要展示了如何使用HTTPUrlConnection进行GET和POST请求,以及图片的下载操作。下面将详细讲解这些知识点。 首先,我们来看GET请求。GET是HTTP协议中最常见的请求方法,通常用于获取服务器上的资源。在...

    HttpUrlConnection使用示例

    本篇文章将深入探讨如何使用`HttpURLConnection`以POST方式提交请求。 ### 1. 创建连接 首先,我们需要获取到`HttpURLConnection`实例。这通常通过调用`URL`对象的`openConnection()`方法实现,然后强制转换为`...

    http发送Get和Post请求工具类

    - GET请求常用于获取服务器上的资源,它是无状态的,参数通过URL传递。`sendGetRequest`方法会构建一个URL字符串,将所有参数附加到URL路径后,然后使用`HttpURLConnection`或者第三方库如Apache HttpClient、...

    java http post和get请求回调

    在Java编程中,HTTP POST和GET请求是网络通信的基础,广泛应用于Web服务、API调用以及数据交互。本文将深入探讨这两种请求方法及其在Java中的实现,特别关注带有回调功能的场景。 首先,GET请求是HTTP协议中最常见...

    java发送http/https请求(get/post)Demo,亲测可用

    这里我们将深入探讨如何使用Java发送GET和POST请求,以及处理JSON数据。 首先,让我们关注GET请求。GET请求主要用于从服务器获取资源,其参数通常包含在URL中。在Java中,可以使用`HttpURLConnection`类或者第三方...

    Android中Https请求get和post

    在Android中使用HTTPS的GET请求,可以参考以下步骤: 1. 配置信任所有证书:由于Android系统默认只信任预装的根证书,我们需要创建自定义的TrustManager,接受所有证书。 ```java TrustManager[] trustAllCerts = ...

    Android httpUrlConnection Post方式访问网络简单demo

    2. **设置请求方法**:默认情况下,`HttpURLConnection`会使用GET方法,但我们需要POST,所以需要调用`setRequestMethod("POST")`。 3. **允许输出**:POST请求需要向服务器发送数据,因此需要调用`setDoOutput...

    android 联网请求的两种方式HttpURLConnection和HttpClient

    下面将详细讲解这两种方法,以及它们如何处理POST和GET请求。 **HttpURLConnection** HttpURLConnection是Java标准库提供的类,自Android 2.3(API级别9)起成为推荐的HTTP请求方式。它提供了更直接的控制和更好的...

    java实现多次HttpURLConnection共享session

    使用Apache HttpClient库可以更方便地处理session共享,因为它提供了更强大的功能和更好的API,但基本原理相同:保存和发送Cookie以保持会话状态。如果你的项目已经包含了HttpClient库,可以考虑使用它来替代...

    android使用HTTPURLconnection/get方法访问HTTP

    使用`HttpURLConnection`进行GET请求的基本步骤如下: 1. **获取URL对象**:首先,你需要创建一个`java.net.URL`对象,该对象表示你要访问的HTTP资源的URL。例如: ```java URL url = new URL(...

    Java发送HTTP请求GET/POST测试

    在Java中,我们可以使用`java.net.URL`和`java.net.HttpURLConnection`类来发送GET请求。首先创建URL对象,然后通过openConnection()方法获取HttpURLConnection实例,设置请求方法为GET,并通过connect()方法建立...

    http post/get请求所需的jar包,附带post请求源码样例

    GET请求的特点是简单、快速,但不适合传递大量数据或敏感信息,因为这些信息会暴露在浏览器的历史记录和缓存中。 POST请求则是向服务器提交数据,通常用于创建新资源或更新已有资源。与GET不同,POST请求的数据包含...

    HttpURLConnection之基础

    在Java中使用`HttpURLConnection`发送GET请求的步骤如下: 1. 创建`URL`对象,指定要访问的URL。 2. 调用`openConnection()`方法获取`URLConnection`对象,通常会返回`HttpURLConnection`实例。 3. 设置连接属性,...

Global site tag (gtag.js) - Google Analytics