您的位置:

Java HttpURLConnection 实现 HTTP 请求

Java HttpURLConnection 是 Java 标准库中常用的 HTTP 请求工具,它提供了一种简单、灵活、可靠的方式来进行 HTTP 请求。本文将从多个方面详细介绍 Java HttpURLConnection 的使用方法。

一、创建 HttpURLConnection 对象

在发起 HTTP 请求之前,我们需要先创建 HttpURLConnection 对象。

URL url = new URL("http://www.example.com");
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();

首先我们需要构造一个 URL 对象,然后调用其 openConnection() 方法来获取 HttpURLConnection 对象。

得到 HttpURLConnection 对象之后,我们需要对其进行一些配置,比如请求超时时间、请求方法等。这些配置都可通过 HttpURLConnection 的相应方法进行设置。

二、设置请求方法和请求头

HTTP 规定了多种请求方法,常见的有 GET、POST、PUT、DELETE 等。默认情况下,HttpURLConnection 使用 GET 方法来发起请求。我们可以通过设置 HttpURLConnection 的请求方法来使用其他请求方法,例如:

httpURLConnection.setRequestMethod("POST");

除了请求方法,我们还可以设置请求头,比如 User-Agent、Referer、Cookie 等。设置请求头可通过 HttpURLConnection 的 setRequestProperty() 方法来实现:

httpURLConnection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3");

httpURLConnection.setRequestProperty("Referer", "http://www.example.com");

httpURLConnection.setRequestProperty("Cookie", "token=123456");

三、发送 HTTP 请求

设置完请求方法和请求头后,我们就可以向服务器发起请求了。

对于 GET 请求,我们可以直接调用 HttpURLConnection 的 connect() 方法即可发送请求:

httpURLConnection.connect();

而对于 POST 请求,我们需要在 connect() 方法调用之前,先获取 HttpURLConnection 的输出流,并向其中写入 POST 请求的参数:

httpURLConnection.setDoOutput(true);
DataOutputStream outputStream = new DataOutputStream(httpURLConnection.getOutputStream());
outputStream.writeBytes("param1=value1&param2=value2");
outputStream.flush();
outputStream.close();
httpURLConnection.connect();

四、获取 HTTP 响应

HTTP 请求的响应分为头部和内容两部分。我们可以通过 HttpURLConnection 的 getHeaderFields() 方法来获取响应头,通过 getInputStream() 方法来获取响应内容。

int responseCode = httpURLConnection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
    InputStream inputStream = httpURLConnection.getInputStream();
    BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
    String line;
    StringBuilder response = new StringBuilder();
    while ((line = reader.readLine()) != null) {
        response.append(line);
    }
    reader.close();
    inputStream.close();
    System.out.println(response.toString());
} else {
    System.out.println("请求失败,返回码:" + responseCode);
}

五、异常处理

在使用 HttpURLConnection 发送 HTTP 请求时,可能会出现多种异常,比如请求超时、网络异常、服务器错误等。我们可以通过 try-catch 语句来捕获这些异常,并进行相应的处理。

try {
    URL url = new URL("http://www.example.com");
    HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
    httpURLConnection.setRequestMethod("GET");
    httpURLConnection.setConnectTimeout(5000);
    int responseCode = httpURLConnection.getResponseCode();
    if (responseCode == HttpURLConnection.HTTP_OK) {
        InputStream inputStream = httpURLConnection.getInputStream();
        BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
        String line;
        StringBuilder response = new StringBuilder();
        while ((line = reader.readLine()) != null) {
            response.append(line);
        }
        reader.close();
        inputStream.close();
        System.out.println(response.toString());
    } else {
        System.out.println("请求失败,返回码:" + responseCode);
    }
} catch (MalformedURLException e) {
    System.out.println("URL 不合法:" + e.getMessage());
} catch (IOException e) {
    System.out.println("IO 异常:" + e.getMessage());
} catch (Exception e) {
    System.out.println("其他异常:" + e.getMessage());
}

六、总结

Java HttpURLConnection 是 Java 标准库中常用的 HTTP 请求工具,它提供了一种简单、灵活、可靠的方式来进行 HTTP 请求。本文从创建 HttpURLConnection 对象、设置请求方法和请求头、发送 HTTP 请求、获取 HTTP 响应、异常处理等多个方面详细介绍了 Java HttpURLConnection 的使用方法。