Skip to content

Instantly share code, notes, and snippets.

@LordRaydenMK
Last active December 19, 2017 22:17
Show Gist options
  • Save LordRaydenMK/0798628dbbe73d94bb9426d3d425f7f4 to your computer and use it in GitHub Desktop.
Save LordRaydenMK/0798628dbbe73d94bb9426d3d425f7f4 to your computer and use it in GitHub Desktop.
class Document {
String html;
public Document(String url){
HtmlClient client = new HtmlClient();
html = client.get(url);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment