详细分析Java中的HttpURLConnection基本知识(附Demo)
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpURLConnectionExample {
public static void main(String[] args) {
try {
// 创建URL对象
URL url = new URL("http://www.example.com");
// 打开连接
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置请求方法,默认是GET
connection.setRequestMethod("GET");
// 接收输入流
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
StringBuilder content = new StringBuilder();
// 读取服务器响应并显示
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
// 断开连接
connection.disconnect();
// 打印结果
System.out.println(content.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
这段代码演示了如何使用HttpURLConnection
发起一个简单的HTTP GET请求,并读取服务器响应。在实际应用中,你可能需要处理更复杂的情况,比如POST请求、HTTPS连接、设置请求头、处理响应码和异常等。
评论已关闭