📅  最后修改于: 2020-11-13 05:56:32             🧑  作者: Mango
以下示例将展示在将HTML字符串解析为Document对象之后,使用方法来将html设置,添加或添加到dom元素。
Document document = Jsoup.parse(html);
Element div = document.getElementById("sampleDiv");
div.html("This is a sample content.
");
div.prepend("Initial Text
");
div.append("End Text
");
哪里
document -document对象代表HTML DOM。
Jsoup-主类解析给定的HTML字符串。
html -HTML字符串。
div-元素对象代表表示锚标记的html节点元素。
div.html() -html(content)方法用相应的值替换元素的外部html。
div.prepend() -prepend(content)方法将内容添加到外部html之前。
div.append() -append(content)方法将内容添加到外部html之后。
元素对象代表dom元素,并提供各种方法来将html设置,添加或添加到dom元素。
使用您选择的任何编辑器在C:/> jsoup中创建以下Java程序。
JsoupTester.java
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
public class JsoupTester {
public static void main(String[] args) {
String html = "Sample Title "
+ ""
+ ""
+"";
Document document = Jsoup.parse(html);
Element div = document.getElementById("sampleDiv");
System.out.println("Outer HTML Before Modification :\n" + div.outerHtml());
div.html("This is a sample content.
");
System.out.println("Outer HTML After Modification :\n" + div.outerHtml());
div.prepend("Initial Text
");
System.out.println("After Prepend :\n" + div.outerHtml());
div.append("End Text
");
System.out.println("After Append :\n" + div.outerHtml());
}
}
使用javac编译器编译该类,如下所示:
C:\jsoup>javac JsoupTester.java
现在运行JsoupTester以查看结果。
C:\jsoup>java JsoupTester
查看结果。
Outer HTML Before Modification :
Outer HTML After Modification :
This is a sample content.
After Prepend :
Initial Text
This is a sample content.
After Append :
Initial Text
This is a sample content.
End Text
Outer HTML Before Modification :
Sample Content
Outer HTML After Modification :
Sample Content