在线将 CURL 命令转换为 Java HttpURLConnection 代码

Curl command

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

CURL 到 Java HttpURLConnection 在线

此工具可帮助您生成基于 CURL 命令的 Java HttpURLConnection 代码。复制并粘贴 CURL 命令并生成 Java HttpURLConnection。

您可以使用 CURL 到 Java HttpURLConnection 在线转换器做什么?

  • CURL to Java HttpURLConnection 是一个非常独特的工具,可以将 cURL 命令转换为 Java HttpURLConnection 的 Java HttpURLConnection 请求。输入由用户的 cURL 命令提供以生成 Java HttpURLConnection 代码。
  • 此工具可节省您的时间并有助于轻松生成 Java HttpURLConnection 代码。
  • CURL 到 Java HttpURLConnection 在 Windows、MAC、Linux、Chrome、Firefox、Edge 和 Safari 上运行良好。

什么是 CURL?

cURL 是一种开源命令行工具,可从 Web 下载文件。它支持多种协议,包括 Java HttpURLConnection、Java HttpURLConnectionS、FTP、SFTP、TFTP、Gopher 等。

如何将 CURL 转换为 Java HttpURLConnection 代码? 

第 1 步:粘贴您的 CURL 请求并将其转换为 Java HttpURLConnection 代码

Step2:复制Java HttpURLConnection代码

将 CURL 转换为 Java HttpURLConnection 示例

卷曲
curl example.com
Java HttpURL连接代码
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);
    }
}