Skip to content

Instantly share code, notes, and snippets.

@spencerdeinum
Last active December 17, 2015 15:29
Show Gist options
  • Save spencerdeinum/5632505 to your computer and use it in GitHub Desktop.
Save spencerdeinum/5632505 to your computer and use it in GitHub Desktop.
Jsoup
object Main extends App {
val stream = Source.fromURL("http://www.yahoo.ca")
val document = Jsoup.parse(stream.getLines().mkString)
val title = document.getElementsByTag("title")
println(title)
}
// <title>Yahoo! Canada</title>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment