String myTextBody = "";
// html body
Elements myBodyElements = myDocument.select("#htmlbody");
if (!myBodyElements.isEmpty()) {
myHtmlBody = myBodyElements.html();
}
// text body
Elements myJrTextBodyElements = myDocument.select("#textbody");
if (!myJrTextBodyElements.isEmpty()) {