Skip to content

Instantly share code, notes, and snippets.

@minhdua
minhdua / HttpClientExample.java
Created November 26, 2021 16:56 — forked from swetharnaik/HttpClientExample.java
Java 11 - HttpClient example
import java.io.IOException;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.time.Duration;
public class HttpClientExample {
public static void main(String[] args) throws IOException, InterruptedException {
//supports HTTP2