Package org.osm.jsoup.nodes

Examples of org.osm.jsoup.nodes.Element.select()


     * 获取视频简介
     */
    String summary = "";
    try {
      Element el = doc.getElementById("long");
      summary = el.select(".item").get(0).html();
    } catch (Exception e) {
    }

    Video video = new Video();
    video.setTitle(title);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.