我希望添加一个新的元标记
Document doc = Jsoup.parse(.....)
doc.select("meta").first.appendElement("meta".attr("name","henry").attr("content", "ford");
给了我
<meta name="henry" content="ford" />
</meta>
一切都好,但我怎么能避免第二次
</meta>
请
答案 0 :(得分:6)
你可以试试这对我有用。
doc.head().appendElement("meta").attr("http-equiv","cache-control").attr("content","no-cache");
希望有所帮助
编辑: 在你的“meta”appendElement语句之后,看起来你错过了一个结束。