Package org.osm.jsoup.nodes

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


    /**
     * 获取视频地址
     */
    Element flashEt = doc.getElementById("video-share-code");
    doc = Jsoup.parse(flashEt.attr("value"));
    String flash = doc.select("embed").attr("src");

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


   *            属于名
   * @return 返回属性值
   */
  private static String getElementAttrById(Document doc, String id, String attrName) throws Exception {
    Element et = doc.getElementById(id);
    String attrValue = et.attr(attrName);
    return attrValue;
  }

  /**
   * 根据FLASH地址生成页面代码
 
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.