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(); }
以上がHttpUrlConnection を使用して Java で HTTP リクエストを作成して送信するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。