Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何使用正则表达式在 Java 中解析 HTML?
我需要用 Java 计算页面上的所有 url。我是Java的初学者。我需要关于我应该使用什么技术来计算 url 的建议。我想我可以使用正则表达式来检测 url 并计算 url,但我不舒尔
您可以使用传递给小程序的 url 计数吗?jQuery 会很容易地为您提供: 作为标签var aCnt = $('a').size(); aCnt的计数。a更多关于它的信息。
var aCnt = $('a').size();
aCnt
a
看看jsoup:
Document doc = Jsoup.connect("http://www.your-url.com/").get(); Elements links = doc.select("a"); int count = links.size();