Java 9中的Http/2客户端是什么?

2023年 9月 1日 73.1k 0

Java 9中的Http/2客户端是什么?

Http/2 Client API在 Java 9 中引入。它比 Http/1.1 具有更多性能改进,并且还支持服务器端推送事件。这使得网站高效且更快浏览。Http/2 Client是一个名为jdk.incubator.httpclient的孵化器模块strong>,这意味着所有功能还没有最终确定,新的变化可能会在 java 的未来版本中出现。它导出包含所有公共 API 的 jdk.incubator.http 包。

要使用 Http/2 客户端,我们需要使用 孵化器模块,我们只需使用“–add-modules”命令将httpclient 模块传递到 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!

登录后复制

以上就是Java 9中的Http/2客户端是什么?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论