オンラインで CURL コマンドを Java HttpURLConnection コードに変換します

Curl command

Examples: GET - POST - JSON - Basic Auth - Files - Form

CURL から Java HttpURLConnection オンライン

このツールは、CURL コマンドに基づいて Java HttpURLConnection コードを生成するのに役立ちます。CURL コマンドをコピーして貼り付け、Java HttpURLConnection を生成します。

CURL to Java HttpURLConnection Converter Online では何ができますか?

  • CURL to Java HttpURLConnection は、cURL コマンドを Java HttpURLConnection の Java HttpURLConnection リクエストに変換する非常にユニークなツールです。Java HttpURLConnection コードを生成するためにユーザーの cURL コマンドによって提供される入力。
  • このツールは時間を節約し、Java HttpURLConnection コードを簡単に生成するのに役立ちます。
  • CURL から Java HttpURLConnection は、Windows、MAC、Linux、Chrome、Firefox、Edge、Safari で適切に機能します。

カールとは何ですか?

cURL は、Web からファイルをダウンロードするオープンソースのコマンド ライン ツールです。Java HttpURLConnection、Java HttpURLConnectionS、FTP、SFTP、TFTP、Gopher などのさまざまなプロトコルをサポートします。

CURL を Java HttpURLConnection コードに変換するにはどうすればよいですか? 

ステップ 1: CURL リクエストを貼り付けて Java HttpURLConnection コードに変換します

ステップ2: Java HttpURLConnectionコードをコピーする

CURL を Java HttpURLConnection に変換する例

カール
curl example.com
Java HttpURLConnection コード
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Scanner;

class Main {

    public static void main(String[] args) throws IOException {
        URL url = new URL("http://example.com");
        HttpURLConnection httpConn = (HttpURLConnection) url.openConnection();
        httpConn.setRequestMethod("GET");

        InputStream responseStream = httpConn.getResponseCode() / 100 == 2
                ? httpConn.getInputStream()
                : httpConn.getErrorStream();
        Scanner s = new Scanner(responseStream).useDelimiter("\\A");
        String response = s.hasNext() ? s.next() : "";
        System.out.println(response);
    }
}