Created
December 30, 2012 13:34
-
-
Save lyhcode/4412840 to your computer and use it in GitHub Desktop.
Groovy + Jsoup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Grab('org.jsoup:jsoup:1.7.1') | |
def doc = org.jsoup.Jsoup.connect("https://news.google.com/nwshp?hl=zh-TW&tab=wn").get() | |
doc.select("#s_POPULAR .titletext").each { | |
node-> | |
println "title=${node.text()}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment