About 22,100 results
Open links in new tab
  1. HttpClient (Java SE 11 & JDK 11 ) - Oracle

    HTTPクライアント。 HttpClientを使用して 「リクエスト」 を送信し、 「レスポンス」 を取得できます。 builderを介して HttpClientが作成されます。

  2. Java】HttpClientでAPIを叩いてみる① - Qiita

    Mar 1, 2023 · HttpClient この記事がよくまとまっていてわかりやすかった。 Java 8以前のバージョンでは、HttpURLConnectionクラスを利用する方法が一般的だった。 しかし、このクラスはJava SE …

  3. 今すぐ使える!Java HttpClientの基本操作と活用例まとめ

    この記事を読めば、JavaでHTTP通信をしたいけれど、どのライブラリを使うべきか迷っている方が、 Java標準のHttpClientの基本的な使い方から、非同期処理やAPI連携といった実践的な活用法まで …

  4. HttpClientクラス | Javaコード入門

    HttpClientクラスは、HTTP通信そのものを管理します。 HttpClientオブジェクトを生成するには、builderメソッドでHttpClient.Builderオブジェクト(=HttpClientを生成するためのビルダー)を生 …

  5. Introduction to the Java HTTP Client - OpenJDK

    Since HTTP/2 is the default preferred protocol, and the implementation seamlessly fallbacks to HTTP/1.1 where necessary, then the Java HTTP Client is well positioned for the future, when …

  6. Java HttpClient - ZetCode

    Apr 17, 2025 · Learn how to create HTTP requests in Java using the HttpClient library. This comprehensive tutorial covers GET and POST requests, query parameters, asynchronous requests, …

  7. Exploring the New HTTP Client in Java - Baeldung

    Jan 8, 2024 · In this tutorial, we’ll explore Java 11’s standardization of HTTP client API that implements HTTP/2 and Web Socket. It aims to replace the legacy HttpUrlConnection class that has been …

  8. Java標準機能でHttpClient - Qiita

    Jan 16, 2022 · 普段はSpringBootを使った開発をしているためRestTemplateを使うのだが、いざSpringBootに依存しない実装が必要となったときに、Apache HttpClient を使わなくてもJavaの標 …

  9. Mastering HttpClient in Java - javaspring.net

    Jan 16, 2026 · This blog post aims to provide a comprehensive guide to using HttpClient in Java, covering fundamental concepts, usage methods, common practices, and best practices.

  10. HttpClient (Java SE 11 & JDK 11 ) - Oracle

    Once built, an HttpClient is immutable, and can be used to send multiple requests. An HttpClient provides configuration information, and resource sharing, for all requests sent through it.