HTMLExtractor extractor = new HTMLExtractor();
NodePathParser pathParser = new NodePathParser();
try {
NodePath nodePath = pathParser.toPath(txt);
HTMLNode node = extractor.lookNode(document.getRoot(), nodePath);
if(node == null) return;
if(node.isNode(Name.CONTENT)
|| node.isNode(Name.COMMENT)
|| node.isNode(Name.UNKNOWN)) {
browser.setText(node.getTextValue());
return;
}
NodePath headerPath = pathParser.toPath("HEAD");
HTMLNode header = extractor.lookNode(document.getRoot(), headerPath);
if(toolbar.isShowAll()) {
if(hyperlinkUtil == null) hyperlinkUtil = new HyperLinkUtil();
try {