Replace <br /> with something else and vice versa, for example:
Document doc = Jsoup.connect("http://www.ejemplo.html").get(); //Here included the <br>'s String temp = doc.html().replace("<br />", "$$$"); //$$$ instead <br> doc = Jsoup.parse(temp); //Parse again String text = doc.body().text().replace("$$$", "\n").toString()); //example //I get back the new lines (\n)
source share