Java의 HTTP 요청 구성
Java에서 HTTP 요청을 구성하고 전송하려면 java.net.HttpUrlConnection 클래스를 활용해야 합니다.
HTTP 요청을 구성하려면 다음을 따르세요. 단계:
요청을 보내려면:
다음은 예입니다. HttpUrlConnection:
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(); }을 사용하여 POST 요청 보내기
위 내용은 HttpUrlConnection을 사용하여 Java에서 HTTP 요청을 작성하고 보내는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!