當前位置: 首頁>>代碼示例>>Java>>正文


Java Document.title方法代碼示例

本文整理匯總了Java中org.jsoup.nodes.Document.title方法的典型用法代碼示例。如果您正苦於以下問題:Java Document.title方法的具體用法?Java Document.title怎麽用?Java Document.title使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.jsoup.nodes.Document的用法示例。


在下文中一共展示了Document.title方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: extractDataWithJsoup

import org.jsoup.nodes.Document; //導入方法依賴的package包/類
public void extractDataWithJsoup(String href){
	Document doc = null;
	try {
		doc = Jsoup.connect(href).timeout(10*1000).userAgent("Mozilla").ignoreHttpErrors(true).get();
	} catch (IOException e) {
		//Your exception handling here
	}
	if(doc != null){
		String title = doc.title();
		String text = doc.body().text();
		Elements links = doc.select("a[href]");
		for (Element link : links) {
			String linkHref = link.attr("href");
			String linkText = link.text();
			String linkOuterHtml = link.outerHtml(); 
			String linkInnerHtml = link.html();
		}
	}
}
 
開發者ID:PacktPublishing,項目名稱:Java-Data-Science-Cookbook,代碼行數:20,代碼來源:JsoupTesting.java

示例2: convert

import org.jsoup.nodes.Document; //導入方法依賴的package包/類
@Override public Page convert(ResponseBody responseBody) throws IOException {
  Document document = Jsoup.parse(responseBody.string());
  List<String> links = new ArrayList<>();
  for (Element element : document.select("a[href]")) {
    links.add(element.attr("href"));
  }
  return new Page(document.title(), Collections.unmodifiableList(links));
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:9,代碼來源:Crawler.java

示例3: displayBodyText

import org.jsoup.nodes.Document; //導入方法依賴的package包/類
public void displayBodyText(Document document) {
    // Displays the entire body of the document
    String title = document.title();
    out.println("Title: " + title);

    out.println("---Body---");
    Elements element = document.select("body");
    out.println("Text: " + element.text());
}
 
開發者ID:PacktPublishing,項目名稱:Machine-Learning-End-to-Endguide-for-Java-developers,代碼行數:10,代碼來源:JSoupExamples.java

示例4: getPageTitle

import org.jsoup.nodes.Document; //導入方法依賴的package包/類
public static String getPageTitle(String url) {
	Document doc = null;
	try {
		doc = Jsoup.connect(url).get();
	} catch (IOException e) {
		e.printStackTrace();
	}
	return doc.title();
}
 
開發者ID:GigaGamma,項目名稱:SuperiorCraft,代碼行數:10,代碼來源:WebUtil.java

示例5: process

import org.jsoup.nodes.Document; //導入方法依賴的package包/類
/**
 * 解析頁麵
 * process函數需要完成的有:
 * 1.解析有用的信息,丟進去Page的List items中。之後save會進行存儲!
 *
 * @param page
 * @return 自己
 */
public Page process(Page page) {
    Document doc = page.getDocument();

    String title = doc.title();
    String text = doc.text();
    Map<String, String> items = new HashMap<String, String>();
    items.put("title", title);
    items.put("text", text);
    items.put("url", page.getUrlSeed().getUrl());

    page.setItems(items);

    return page;
}
 
開發者ID:xjtushilei,項目名稱:ScriptSpider,代碼行數:23,代碼來源:TextPageProcessor.java


注:本文中的org.jsoup.nodes.Document.title方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。