jsoup入门
Posted xiaofengfree
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsoup入门相关的知识,希望对你有一定的参考价值。
import org.jsoup.Jsoup; import org.jsoup.nodes.Document; public class Test { public static void main(String[] args) { String html = "<html><head><title>First parse</title></head>" + "<body><p>Parsed HTML into a doc.</p></body></html>"; Document doc = Jsoup.parse(html); String title = doc.title(); System.out.println(title); } }
以上是关于jsoup入门的主要内容,如果未能解决你的问题,请参考以下文章