String contentType = response.getContentType();
if (parsing) {
try {
Parser parser = parserFactory.createParser(url, contentType);
if (parser != null) {
ParseResult parseresult = parser.getParse(page);
page.setParseResult(parseresult);
}
} catch (Exception ex) {
LogUtils.getLogger().info("Exception", ex);
}