Java 9 の HTTP/2 クライアントとは何ですか?
Http/2 クライアント APIJava 9 で導入されました。 Http/1.1 よりもパフォーマンスが向上しており、サーバー側プッシュ イベント もサポートしています。これにより、サイトの閲覧が 効率的かつ 高速になります。 Http/2 Client は、jdk.incubator.httpclient という名前のインキュベーター モジュールです。これは、すべての機能がまだ完成しておらず、Java の将来のバージョンに新しい変更が追加される可能性があることを意味します。 。すべてのパブリック API を含む jdk.incubator.http パッケージをエクスポートします。
Http/2 クライアント を使用するには、incubator モジュール を使用する必要があります。"-add-modules"# を使用するだけです。 httpclient Module への ## コマンドは、以下に示すように JShell に渡されます<strong>C:\>jshell -v --add-modules jdk.incubator.httpclient
| Welcome to JShell -- Version 9.0.4
| For an introduction type: /help intro</strong>
Example
<strong>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</strong> <strong> jshell> System.out.println(httpResponse.body()); Apache HTTP Server Test Page powered by CentOS Testing 123.. <p class="lead">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.</p><p class="lead">The website you just visited is either experiencing problems or is undergoing routine maintenance.</p>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? <p>You should add your website content to the directory /var/www/html/.</p><p>To prevent this page from ever being used, follow the instructions in the file /etc/httpd/conf.d/welcome.conf.</p>Promoting Apache and CentOS </strong><p><strong>You are free to use the images below on Apache and CentOS Linux powered HTTP servers. Thanks for using Apache and CentOS!</strong></p>
以上がJava 9 の HTTP/2 クライアントとは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

Video Face Swap
完全無料の AI 顔交換ツールを使用して、あらゆるビデオの顔を簡単に交換できます。

人気の記事

ホットツール

メモ帳++7.3.1
使いやすく無料のコードエディター

SublimeText3 中国語版
中国語版、とても使いやすい

ゼンドスタジオ 13.0.1
強力な PHP 統合開発環境

ドリームウィーバー CS6
ビジュアル Web 開発ツール

SublimeText3 Mac版
神レベルのコード編集ソフト(SublimeText3)

ホットトピック











一部のアプリケーションが適切に機能しないようにする会社のセキュリティソフトウェアのトラブルシューティングとソリューション。多くの企業は、内部ネットワークセキュリティを確保するためにセキュリティソフトウェアを展開します。 ...

システムドッキングでのフィールドマッピング処理は、システムドッキングを実行する際に難しい問題に遭遇することがよくあります。システムのインターフェイスフィールドを効果的にマッピングする方法A ...

データベース操作にMyBatis-Plusまたはその他のORMフレームワークを使用する場合、エンティティクラスの属性名に基づいてクエリ条件を構築する必要があることがよくあります。あなたが毎回手動で...

intellijideaultimatiateバージョンを使用してスプリングを開始します...

多くのアプリケーションシナリオでソートを実装するために名前を数値に変換するソリューションでは、ユーザーはグループ、特に1つでソートする必要がある場合があります...

Javaオブジェクトと配列の変換:リスクの詳細な議論と鋳造タイプ変換の正しい方法多くのJava初心者は、オブジェクトのアレイへの変換に遭遇します...

データベースクエリにTKMYBATISを使用する場合、クエリ条件を構築するためにエンティティクラスの変数名を優雅に取得する方法は一般的な問題です。この記事はピン留めします...

Spring Project Startupにおける円形依存関係のランダム性を理解してください。春のプロジェクトを開発するとき、プロジェクトの起動時に循環依存関係によって引き起こされるランダム性に遭遇する可能性があります...
