java、http请求代码
时间: 2023-12-27 07:02:51 浏览: 67
以下是一个使用Java实现HTTP请求的示例代码:
```
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class HttpRequest {
public static void main(String[] args) throws Exception {
String url = "http://www.example.com/api";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
}
}
```
这个示例代码使用Java的URLConnection类创建HTTP连接,并发送GET请求到指定的URL。在这个示例中,我们只是输出了HTTP响应的内容,但是您可以根据需要进行处理和解析。注意:在实际开发中,您可能需要设置其他HTTP请求头和参数。
阅读全文