import java.io.IOException;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
public class GetRequestTest {
public static void main(String[] args) throws IOException, InterruptedException {
HttpRequest request = HttpBinRequestBuilder.createGetRequest();
HttpClient httpClient = HttpClientBuilderTest.createHttpClient();
// HttpClient#send is blocking; the body is kept in memory to be processed
HttpResponse