私は以下のサンプルコードを持っています。jsoupを使ってhtmlを解析する際に空白と改行を避ける
String sample = "<html>
<head>
</head>
<body>
This is a sample on parsing html body using jsoup
This is a sample on parsing html body using jsoup
</body>
</html>";
Document doc = Jsoup.parse(sample);
String output = doc.body().text();
私は
This is a sample on parsing html body using jsoup This is a sample on `parsing html body using jsoup`
として出力を得るしかし、私はこの出力を得るように、それを解析するにはどうすればよい
This is a sample on parsing html body using jsoup
This is a sample on parsing html body using jsoup
として出力したいですか?あるいは、Javaでこれを行う別の方法がありますか?