本文整理汇总了Java中org.jsoup.nodes.Document.outerHtml方法的典型用法代码示例。如果您正苦于以下问题:Java Document.outerHtml方法的具体用法?Java Document.outerHtml怎么用?Java Document.outerHtml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jsoup.nodes.Document
的用法示例。
在下文中一共展示了Document.outerHtml方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getVideoURLAtPage
import org.jsoup.nodes.Document; //导入方法依赖的package包/类
public static String getVideoURLAtPage(String url) throws IOException {
Document doc = Http.url(url)
.userAgent(USER_AGENT)
.get();
String html = doc.outerHtml();
String videoURL = null;
for (String quality : new String[] {"1080", "720", "480", "240"}) {
quality = "url" + quality + "\\\":\\\"";
if (html.contains(quality)) {
videoURL = html.substring(html.indexOf(quality) + quality.length());
videoURL = videoURL.substring(0, videoURL.indexOf("\""));
videoURL = videoURL.replace("\\", "");
break;
}
}
if (videoURL == null) {
throw new IOException("Could not find video URL at " + url);
}
return videoURL;
}
示例2: translateHTMLFragment
import org.jsoup.nodes.Document; //导入方法依赖的package包/类
public String translateHTMLFragment(Document html){
if(html==null)
throw new IllegalArgumentException("HTML fragment must not be null");
checkLanguageSet();
DOMTranslator.translateFragment(html,currentBundle.get());
return html.outerHtml();
}
示例3: apply
import org.jsoup.nodes.Document; //导入方法依赖的package包/类
private String apply(Document document){
document.select(String.format("[%s]",
IF_DEV_ATTR))
.forEach(this::ifDevelopment);
return document.outerHtml();
}