Java 中的 HTTP 请求组合
在 Java 中,组合和发送 HTTP 请求涉及使用 java.net.HttpUrlConnection 类。
要构造 HTTP 请求,请遵循以下步骤步骤:
发送请求:
这是一个示例使用 HttpUrlConnection 发送 POST 请求:
public static String executePost(String targetURL, String urlParameters) { // Create connection and set headers HttpURLConnection connection = (HttpURLConnection) new URL(targetURL).openConnection(); connection.setRequestMethod("POST"); connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); connection.setRequestProperty("Content-Length", Integer.toString(urlParameters.getBytes().length)); // Enable output and write request connection.setDoOutput(true); DataOutputStream wr = new DataOutputStream(connection.getOutputStream()); wr.writeBytes(urlParameters); wr.close(); // Get response BufferedReader rd = new BufferedReader(new InputStreamReader(connection.getInputStream())); StringBuilder response = new StringBuilder(); String line; while ((line = rd.readLine()) != null) { response.append(line); response.append('\r'); } rd.close(); return response.toString(); }
以上是如何使用 HttpUrlConnection 在 Java 中编写和发送 HTTP 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!