Skip to content

Instantly share code, notes, and snippets.

@redknitin
Created July 12, 2014 14:10
Show Gist options
  • Save redknitin/2fc028c33a095f184767 to your computer and use it in GitHub Desktop.
Save redknitin/2fc028c33a095f184767 to your computer and use it in GitHub Desktop.
JSoup is like BeautifulSoup for Java
Document document = Jsoup.connect("http://localhost:3112/katkam/nr").get();
String question = document.select("#content .post-title p").first().text();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment