Skip to content

Instantly share code, notes, and snippets.

@adambgoode
Created April 17, 2018 17:57
Show Gist options
  • Save adambgoode/6722a6ae648f5e396134a511614b528b to your computer and use it in GitHub Desktop.
Save adambgoode/6722a6ae648f5e396134a511614b528b to your computer and use it in GitHub Desktop.
// HTTP Client GET
// Usage: jshell --add-modules jdk.incubator.httpclient http-get.jsh
import jdk.incubator.http.*
var client = HttpClient.newHttpClient()
var request = HttpRequest.newBuilder().uri(new URI("https://medium.com/adambgoode")).build()
var response = client.send(request, HttpResponse.BodyHandler.asString())
System.out.println(response.body())
/exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment