在此示例中, 我们将从HTML文件中获取HTML页面的标题。为此, 我们将调用Jsoup.parse()方法, 该方法返回Document的引用。 Document类的title()方法返回HTML文档的标题。
import java.io.File;
import java.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
public class JsoupPrintTitlefromHtml{
public static void main( String[] args ) throws IOException{
Document doc = Jsoup.parse(new File("e:\\register.html"), "utf-8");
String title = doc.title();
System.out.println("title is: " + title);
}
}
输出:
title is: Please Register
评论前必须登录!
注册