栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

使用Jsoup打开连接,获取状态代码并解析文档

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

使用Jsoup打开连接,获取状态代码并解析文档

如JSoup文档中有关Connection.Response类型的所述,有一种

parse()
方法将响应的主体解析为a
document
并返回它。有了它,您就可以随心所欲。

例如,查看执行

getUrls()

public class ParsePage {   private String path;   Connection.Response response = null;   private ParsePage(String langLocale){      try {         response = Jsoup.connect(path) .userAgent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.21 (KHTML, like Gecko) Chrome/19.0.1042.0 Safari/535.21") .timeout(10000) .execute();      } catch (IOException e) {         System.out.println("io - "+e);      }   }   public int getSitemapStatus() {      int statusCode = response.statusCode();      return statusCode;   }   public ArrayList<String> getUrls() {      ArrayList<String> urls = new ArrayList<String>();      document doc = response.parse();      // do whatever you want, for example retrieving the <url> from the sitemap      for (Element url : doc.select("url")) {         urls.add(url.select("loc").text());      }      return urls;   }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/509339.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号