ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
# 示例程序 获取所有链接 <div><div><div><p>这个示例程序将展示如何从一个URL获得一个页面。然后提取页面中的所有链接、图片和其它辅助内容。并检查URLs和文本信息。</p> <p>运行下面程序需要指定一个URLs作为参数</p> <pre><code>package org.jsoup.examples; import org.jsoup.Jsoup; import org.jsoup.helper.Validate; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import java.io.IOException; /** * Example program to list links from a URL. */ public class ListLinks { public static void main(String[] args) throws IOException { Validate.isTrue(args.length == 1, "usage: supply url to fetch"); String url = args[0]; print("Fetching %s...", url); Document doc = Jsoup.connect(url).get(); Elements links = doc.select("a[href]"); Elements media = doc.select("[src]"); Elements imports = doc.select("link[href]"); print("\nMedia: (%d)", media.size()); for (Element src : media) { if (src.tagName().equals("img")) print(" * %s: &lt;%s&gt; %sx%s (%s)", src.tagName(), src.attr("abs:src"), src.attr("width"), src.attr("height"), trim(src.attr("alt"), 20)); else print(" * %s: &lt;%s&gt;", src.tagName(), src.attr("abs:src")); } print("\nImports: (%d)", imports.size()); for (Element link : imports) { print(" * %s &lt;%s&gt; (%s)", link.tagName(),link.attr("abs:href"), link.attr("rel")); } print("\nLinks: (%d)", links.size()); for (Element link : links) { print(" * a: &lt;%s&gt; (%s)", link.attr("abs:href"), trim(link.text(), 35)); } } private static void print(String msg, Object... args) { System.out.println(String.format(msg, args)); } private static String trim(String s, int width) { if (s.length() &gt; width) return s.substring(0, width-1) + "."; else return s; } } <p><a href="http://github.com/jhy/jsoup/blob/master/src/main/java/org/jsoup/examples/ListLinks.java">org/jsoup/examples/ListLinks.java</a></p></code></pre> <h2>示例输入结果</h2> <pre><code>Fetching http://news.ycombinator.com/... Media: (38) * img: &lt;http://ycombinator.com/images/y18.gif&gt; 18x18 () * img: &lt;http://ycombinator.com/images/s.gif&gt; 10x1 () * img: &lt;http://ycombinator.com/images/grayarrow.gif&gt; x () * img: &lt;http://ycombinator.com/images/s.gif&gt; 0x10 () * script: &lt;http://www.co2stats.com/propres.php?s=1138&gt; * img: &lt;http://ycombinator.com/images/s.gif&gt; 15x1 () * img: &lt;http://ycombinator.com/images/hnsearch.png&gt; x () * img: &lt;http://ycombinator.com/images/s.gif&gt; 25x1 () * img: &lt;http://mixpanel.com/site_media/images/mixpanel_partner_logo_borderless.gif&gt; x (Analytics by Mixpan.) Imports: (2) * link &lt;http://ycombinator.com/news.css&gt; (stylesheet) * link &lt;http://ycombinator.com/favicon.ico&gt; (shortcut icon) Links: (141) * a: &lt;http://ycombinator.com&gt; () * a: &lt;http://news.ycombinator.com/news&gt; (Hacker News) * a: &lt;http://news.ycombinator.com/newest&gt; (new) * a: &lt;http://news.ycombinator.com/newcomments&gt; (comments) * a: &lt;http://news.ycombinator.com/leaders&gt; (leaders) * a: &lt;http://news.ycombinator.com/jobs&gt; (jobs) * a: &lt;http://news.ycombinator.com/submit&gt; (submit) * a: &lt;http://news.ycombinator.com/x?fnid=JKhQjfU7gW&gt; (login) * a: &lt;http://news.ycombinator.com/vote?for=1094578&amp;dir=up&amp;whence=%6e%65%77%73&gt; () * a: &lt;http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+readwriteweb+%28ReadWriteWeb%29&amp;utm_content=Twitter&gt; (Facebook speeds up PHP) * a: &lt;http://news.ycombinator.com/user?id=mcxx&gt; (mcxx) * a: &lt;http://news.ycombinator.com/item?id=1094578&gt; (9 comments) * a: &lt;http://news.ycombinator.com/vote?for=1094649&amp;dir=up&amp;whence=%6e%65%77%73&gt; () * a: &lt;http://groups.google.com/group/django-developers/msg/a65fbbc8effcd914&gt; ("Tough. Django produces XHTML.") * a: &lt;http://news.ycombinator.com/user?id=andybak&gt; (andybak) * a: &lt;http://news.ycombinator.com/item?id=1094649&gt; (3 comments) * a: &lt;http://news.ycombinator.com/vote?for=1093927&amp;dir=up&amp;whence=%6e%65%77%73&gt; () * a: &lt;http://news.ycombinator.com/x?fnid=p2sdPLE7Ce&gt; (More) * a: &lt;http://news.ycombinator.com/lists&gt; (Lists) * a: &lt;http://news.ycombinator.com/rss&gt; (RSS) * a: &lt;http://ycombinator.com/bookmarklet.html&gt; (Bookmarklet) * a: &lt;http://ycombinator.com/newsguidelines.html&gt; (Guidelines) * a: &lt;http://ycombinator.com/newsfaq.html&gt; (FAQ) * a: &lt;http://ycombinator.com/newsnews.html&gt; (News News) * a: &lt;http://news.ycombinator.com/item?id=363&gt; (Feature Requests) * a: &lt;http://ycombinator.com&gt; (Y Combinator) * a: &lt;http://ycombinator.com/w2010.html&gt; (Apply) * a: &lt;http://ycombinator.com/lib.html&gt; (Library) * a: &lt;http://www.webmynd.com/html/hackernews.html&gt; () * a: &lt;http://mixpanel.com/?from=yc&gt; () </code></pre> </div> <div> <div> <h2><a href="http://jsoup.org/cookbook">Cookbook 目录 </a></h2> <h3>入门</h3> <ol start="1"> <li><a href="http://www.open-open.com/jsoup/parsing-a-document.htm">解析和遍历一个html文档</a></li></ol> <h3>输入</h3> <ol start="2"> <li><a href="http://www.open-open.com/jsoup/parse-document-from-string.htm">解析一个html字符串</a></li> <li><a href="http://www.open-open.com/jsoup/parse-body-fragment.htm">解析一个body片断</a></li> <li><a href="http://www.open-open.com/jsoup/load-document-from-url.htm">从一个URL加载一个Document对象</a></li> <li><a href="http://www.open-open.com/jsoup/load-document-from-file.htm">根据一个文件加载Document对象</a></li></ol> <h3>数据抽取</h3> <ol start="6"> <li><a href="http://www.open-open.com/jsoup/dom-navigation.htm">使用dom方法来遍历一个Document对象</a></li> <li><a href="http://www.open-open.com/jsoup/selector-syntax.htm">使用选择器语法来查找元素</a></li> <li><a href="http://www.open-open.com/jsoup/attributes-text-html.htm">从元素集合抽取属性、文本和html内容</a></li> <li><a href="http://www.open-open.com/jsoup/working-with-urls.htm">URL处理</a></li> <li>程序示例:获取所有链接</li></ol> <h3> 数据修改 </h3> <ol start="11"> <li><a href="http://www.open-open.com/jsoup/set-attributes.htm">设置属性值</a></li> <li><a href="http://www.open-open.com/jsoup/set-html.htm">设置元素的html内容</a></li> <li><a href="http://www.open-open.com/jsoup/set-text.htm">设置元素的文本内容</a></li></ol> <h3>HTML清理</h3> <ol start="14"> <li><a href="http://www.open-open.com/jsoup/whitelist-sanitizer.htm">消除不受信任的html (来防止xss攻击)</a></li></ol></div></div></div> <div><b>jsoup</b> HTML parser: copyright © 2009 - 2011 <a href="http://www.open-open.com/"><b>Jonathan Hedley</b></a></div></div>