|
@@ -35,6 +35,9 @@ public class CommonAnalysisUtil {
|
|
|
Element body = document.select("body").first();
|
|
|
List<Node> nodes = body.childNodes();
|
|
|
Node node = nodes.get(0);
|
|
|
+ if (" ".equals(node.toString())) {
|
|
|
+ node = nodes.get(1);
|
|
|
+ }
|
|
|
String htmlContent = null;
|
|
|
if (node instanceof Element) {
|
|
|
Element element = (Element) node;
|