কম্পিউটার

Java 9 এ Http/2 ক্লায়েন্ট কি?


Http/2 ক্লায়েন্ট API জাভা 9-এ প্রবর্তিত হয়েছে। এটি Http/1.1 -এর তুলনায় আরও বেশি কর্মক্ষমতা উন্নতি করেছে এবং সার্ভার-সাইড পুশ ইভেন্ট সমর্থন করে . এটি ওয়েবসাইটটিকে দক্ষ করে তোলে এবং দ্রুত ব্রাউজ করতে।Http/2 ক্লায়েন্ট jdk.incubator.httpclient নামে একটি ইনকিউবেটর মডিউল , যার মানে হল যে সমস্ত বৈশিষ্ট্য এখনও চূড়ান্ত হয়নি, এবং নতুন পরিবর্তনগুলি জাভার ভবিষ্যৎ সংস্করণে আসতে পারে। এটি 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. জাভা 9-এ JShell-এ বিভিন্ন/সম্পাদনা কমান্ডগুলি কী কী?

  2. জাভাতে StringIndexOutOfBoundsException কি?

  3. জাভা প্রোগ্রামিং কি?

  4. HTTP/2 কি এবং এটি কি করে?