本文整理汇总了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;
}