Package org.osm.jsoup.select

Examples of org.osm.jsoup.select.Elements


     */
    Element picEt = doc.getElementById("plVideosList");
    String time = null;
    String pic = null;
    if (picEt != null) {
      Elements pics = picEt.getElementsByTag("img");
      pic = pics.get(0).attr("src");

      /**
       * 获取视频时长
       */
      Element timeEt = picEt.select("span.review>cite").first();
View Full Code Here

TOP

Related Classes of org.osm.jsoup.select.Elements

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.