Java
 Computer >> コンピューター >  >> プログラミング >> Java

Java9のHttp/2クライアントとは何ですか?


Http/2クライアントAPI Java9で導入されました。Http/ 1.1よりもパフォーマンスが向上しています。 また、サーバー側のプッシュイベントもサポートしています 。これにより、ウェブサイトは効率的になります および高速 閲覧します。Http/2クライアント jdk.incubator.httpclientという名前のインキュベーターモジュールです。 、これは、すべての機能がまだ完成しておらず、Javaの将来のバージョンで新しい変更が行われる可能性があることを意味します。 jdk.incubator.httpをエクスポートします すべてのパブリックAPIを含むパッケージ。

Http/2クライアントを使用するには 、インキュベーターモジュールを使用する必要があります 、 httpclientを渡すだけです モジュール "–add-modules"を使用してJShellに追加します 以下のコマンド

C:\>jshell -v --add-modules jdk.incubator.httpclient
| Welcome to JShell -- Version 9.0.4
| For an introduction type: /help intro


jshell> import jdk.incubator.http.*;

jshell> HttpClient httpClient = HttpClient.newHttpClient();
httpClient ==> jdk.incubator.http.HttpClientImpl@534df152
| created variable httpClient : HttpClient

jshell> HttpRequest httpRequest = HttpRequest.newBuilder().uri(new URI("https: //www.google.com")).GET().build();
httpRequest ==> https://www.google.com GET
| created variable httpRequest : HttpRequest

jshell> HttpResponse httpResponse = httpClient.send(httpRequest, HttpResponse.BodyHandler.asString());
httpResponse ==> jdk.incubator.http.HttpResponseImpl@609cd4d8
| created variable httpResponse : HttpResponse

jshell> System.out.println(httpResponse.statusCode());
403

jshell> System.out.println(httpResponse.body());
Apache HTTP Server Test Page powered by CentOS
Testing 123..

This page is used to test the proper operation of the Apache HTTP server after it has been insta lled. If you can read this page it means that this site is working properly. Thi s server is powered by CentOS.

The website you just visited is either experiencing problems or is undergoing routine maintenance.

If you would like to let the administrators of this website know that you've seen this page instead of the page you expected, you should send them e-mail. In general, mail sent to the name "webmast er" and directed to the website's domain should reach the appropriate person.For example, if you experienced problems while visiting www.example.com, you should send e-mail to "webmaster@example .com". Are you the Administrator?

You should add your website content to the directory /var/www/html/.

To prevent this page from ever being used, follow the instructions in the file /etc/httpd/conf.d/welcome.conf.

Promoting Apache and CentOS

You are free to use the images below on Apache and CentOS Linux powered HTTP servers. Thanks for using Apache and CentOS!


  1. JavaのStringIndexOutOfBoundsExceptionとは何ですか?

    文字列は、Javaで文字のシーケンスを格納するために使用され、オブジェクトとして扱われます。 java.langパッケージのStringクラスは、文字列を表します。 文字列は、(他のオブジェクトのように)新しいキーワードを使用するか、(他のプリミティブデータ型のように)リテラルに値を割り当てることによって作成できます。 String stringObject = new String("Hello how are you"); String stringLiteral = "Welcome to Tutorialspoint"; 文字列には文字の配列

  2. HTTP / 2とは何ですか?それは何をしますか?

    過去20年間で、ワールドワイドウェブは劇的に進化しました。改善されたすべてのWebテクノロジーには、技術的な限界に達しつつある現在のもの(HTTP)よりも、通信とファイル転送のためのより優れた高速のソリューションとプロトコルが必要です。 HTTP / 2とは何ですか? HTTP/2はハイパーテキストの最新バージョンです トランスポートプロトコル(HTTP)–ワールドワイドウェブで使用される基盤となるプロトコル 。最初は2015年2月に承認されました。これは、元のHTTPからほぼ20年後のことです。 HTTP / 2は読み込み時間を短縮し、サーバーとブラウザ間の通信を大幅に改善し