jsoup 获取json

http://stackoverflow.com/questions/7133118/jsoup-requesting-json-response
You can fetch JSON or other data format using this:

// JSON example
String json = Jsoup.connect(url).ignoreContentType(true).execute().body();

你可能感兴趣的:(jsoup 获取json)