Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java

Idiom #101 Load from HTTP GET request into a string

Make an HTTP request with method GET to the URL u, then store the body of the response in the string s.

import java.io.IOException;
import javax.net.ssl.HttpsURLConnection;
HttpsURLConnection h = null;
try {
    h = (HttpsURLConnection) u.openConnection();
    h.setRequestMethod("GET");
    byte a[] = h.getInputStream().readAllBytes();
    String s = new String(a);
} catch (IOException e) {
    throw new RuntimeException(e);
} finally {
    if (h != null) h.disconnect();
}
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String s = HttpClient.newHttpClient().send(HttpRequest.newBuilder()
                .uri(URI.create(u))
                .GET()
                .build(), HttpResponse.BodyHandlers.ofString())
                .body();
(def s (slurp u))

New implementation...