简体   繁体   中英

How to modify the html file content in jsoup?

I Have a html file like below

<div id ="test"> <u>s</u> </div>  

I want to modify like this using java

  <div id ="test"> <b>Test<b> </div>

is it possible in jsoup ?

it is posible:

  Element el = doc.select("div#test").first();
  for (Element elC : el.children()) {
      elC.remove();
  }
  Element nel = el.appendElement("b");
  nel.text("Test");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM