我需要使用Jsoup检查请求的状态代码,如果200要解析html。
如果我使用它:
dom = jSoupClass.connect( "http://www.google.it" )
.userAgent("Mozilla/5.0 (Windows; U; WindowsNT 5.1; en-US; rv1.8.1.6) Gecko/20070725 Firefox/2.0.0.6")
.execute();
status = dom.statusCode();
我将获得响应状态代码,但是如何解析html?
答案 0 :(得分:3)
只需拨打parse()
就像Document doc = dom.parse()
应该做的那样。