Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのコードを使用しました:
String innerHtml = Jsoup.parse(htmlCode,"ISO-8859-1").select("body").html();
しかし、それは<html>タグを削除するだけです
<html>
内HTMLのタグbodyは引き続き表示されます
HTML
body
要素とそのすべての子の結合テキストを取得するには、.text()代わりに使用します。.html()
.text()
.html()
使用してみてください.text():
Jsoup.parse(htmlCode,"ISO-8859-1").select("body").text();
の代わりに.html()。