本文整理匯總了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();
}
}
}
示例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));
}
示例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();
}
示例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;
}