我正在尝试打印html页面的内容,将其保存在字符串中,但jsoup添加额外的空格
<h1>Title</h1><p>paragraph</p>
我想要这个结果:“ Titleparagraph ”但我的结果是“标题段落”如何避免这种情况? 所以没有TAGS
File input = new File("/Users/Vincenzo/Desktop/tirocinio/test1/t1.html");
Document doc = Jsoup.parse(input, "UTF-8");
Element allHTML = doc.select("html").first();
System.out.print(allHTML.text());