(目录)

在这里插入图片描述 欢迎关注微信公众号:数据科学与艺术 作者WX:superhe199

可以使用Java的java.net包中的HttpURLConnection类来进行HTTP请求获取数据。以下是一个示例代码:

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class Main {
    public static void main(String[] args) {
        try {
            // 创建URL对象
            URL url = new URL("http://api.example.com/data");
            
            // 创建HttpURLConnection对象
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            
            // 设置请求方法为GET
            connection.setRequestMethod("GET");
            
            // 发起请求
            int responseCode = connection.getResponseCode();
            
            // 判断请求是否成功
            if (responseCode == HttpURLConnection.HTTP_OK) {
                // 读取响应
                BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                StringBuilder response = new StringBuilder();
                String line;
                while ((line = reader.readLine()) != null) {
                    response.append(line);
                }
                reader.close();
                
                // 打印响应结果
                System.out.println(response.toString());
            } else {
                System.out.println("HTTP request failed with response code: " + responseCode);
            }
            
            // 关闭连接
            connection.disconnect();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

在上面的代码中,我们首先创建一个URL对象,指定要请求的接口地址。然后使用URL.openConnection()方法创建一个HttpURLConnection对象。这个对象用于设置请求方法、发送请求并获取响应。

如果请求成功,我们可以通过HttpURLConnection.getInputStream()方法获取响应的输入流,然后使用BufferedReader来读取数据。最后将读取的数据拼接成一个字符串,并打印出来。

请注意在使用这段代码获取数据之前,要确保接口的地址是正确可访问的。另外,由于这是一个简单的示例,没有处理异常和错误情况。在实际使用中,你可能需要进行错误处理和异常捕获。