6

我想替换 H​​TML 文件中的一些元素,保持所有其他内容不变。

Document doc = Jsoup.parse("<div id=title>Old</div >\n" +
        "<p>1<p>2\n" +
        "<table><tr><td>1</td></tr></table>");
doc.getElementById("title").text("New");
System.out.println(doc.toString());

我希望有以下输出:

<div id=title>New</span></div >
<p>1<p>2
<table><tr><td>1</td></tr></table>

相反,我有:

<html>
 <head></head>
 <body>
  <div id="title">New</div>
  <p>1</p>
  <p>2 </p>
  <table>
   <tbody>
    <tr>
     <td>1</td>
    </tr>
   </tbody>
  </table>
 </body>
</html>

Jsoup 补充说:

  1. 关闭 p 标签
  2. 属性值的双引号
  3. 身体
  4. html、head 和 body 元素

我可以将修改后的 HTML 序列化回原始吗?Jericho可以做到这一点,但它没有像 Jsoup 那样提供流畅的 DOM 操作方法。

4

1 回答 1

1

Is there a reason why attribute values shouldn't get quoted? See here and here.

For the other points try this:

final String html = "<div id=title>Old</div >\n"
            + "<p>1<p>2\n"
            + "<table><tr><td>1</td></tr></table>";

Document doc = Jsoup.parse(html);
doc.select("[id=title]").first().text("New");
doc.select("body, head, html, tbody").unwrap();
doc.outputSettings().prettyPrint(false);

System.out.println(doc);
于 2012-08-27T20:40:06.170 回答