Tiontaigh orduithe CURL go cód Java OkHttp ar líne

Curl command

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

CURL go Java OkHttp Ar Líne

Cuidíonn an uirlis seo leat cód Java OkHttp a ghiniúint bunaithe ar Ordú CURL. Cóipeáil agus Greamaigh Ordú CURL agus Gin Java OkHttp.

Cad is féidir leat a dhéanamh le CURL go Java OkHttp Converter Online?

  • CURL go Java Is uirlis uathúil é OkHttp chun ordú cURL a thiontú go Java OkHttp iarraidh Java OkHttp. An t-ionchur a sholáthraíonn ordú cURL an úsáideora chun Cód Java OkHttp a ghiniúint.
  • Sábhálann an uirlis seo do chuid ama agus cabhraíonn sé le cód Java OkHttp a ghiniúint gan stró.
  • Oibríonn CURL go Java OkHttp go maith ar Windows, MAC, Linux, Chrome, Firefox, Edge agus Safari.

cad é CURL?

Is uirlis líne ordaithe foinse oscailte é cURL a íoslódálann comhaid ón ngréasán. Tacaíonn sé le héagsúlacht prótacail, lena n-áirítear Java OkHttp, Java OkHttpS, FTP, SFTP, TFTP, Gopher agus daoine eile.

Conas CURL a thiontú go cód Java OkHttp? 

Step1: Greamaigh agus tiontaigh d’iarratais CURL go cód Java OkHttp

Step2: Cóipeáil Java OkHttp cód

Tiontaigh CURL mar shampla Java OkHttp

CURL
curl example.com
Cód OKHttp Java
import java.io.IOException;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;

OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
    .url("http://example.com")
    .build();

try (Response response = client.newCall(request).execute()) {
    if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
    response.body().string();
}