Java Code Examples for org.htmlparser.Parser#visitAllNodesWith()
The following examples show how to use
org.htmlparser.Parser#visitAllNodesWith() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HtmlTextParser.java From onboard with Apache License 2.0 | 6 votes |
public static String getPlainText(String htmlStr) { Parser parser = new Parser(); String plainText = ""; try { parser.setInputHTML(htmlStr); StringBean stringBean = new StringBean(); // 设置不需要得到页面所包含的链接信息 stringBean.setLinks(false); // 设置将不间断空格由正规空格所替代 stringBean.setReplaceNonBreakingSpaces(true); // 设置将一序列空格由单一空格替代 stringBean.setCollapse(true); parser.visitAllNodesWith(stringBean); plainText = stringBean.getStrings(); } catch (ParserException e) { e.printStackTrace(); } return plainText; }
Example 2
Source File: HTMLConverter.java From OpenEphyra with GNU General Public License v2.0 | 6 votes |
/** * Converts an HTML document into plain text. * * @param html HTML document * @return plain text or <code>null</code> if the conversion failed */ public static synchronized String html2text(String html) { // convert HTML document StringBean sb = new StringBean(); sb.setLinks(false); // no links sb.setReplaceNonBreakingSpaces (true); // replace non-breaking spaces sb.setCollapse(true); // replace sequences of whitespaces Parser parser = new Parser(); try { parser.setInputHTML(html); parser.visitAllNodesWith(sb); } catch (ParserException e) { return null; } String docText = sb.getStrings(); if (docText == null) docText = ""; // no content return docText; }
Example 3
Source File: HTMLConverter.java From OpenEphyra with GNU General Public License v2.0 | 6 votes |
/** * Reads an HTML document from a file and converts it into plain text. * * @param filename name of file containing HTML documents * @return plain text or <code>null</code> if the reading or conversion failed */ public static synchronized String file2text(String filename) { // read from file and convert HTML document StringBean sb = new StringBean(); sb.setLinks(false); // no links sb.setReplaceNonBreakingSpaces (true); // replace non-breaking spaces sb.setCollapse(true); // replace sequences of whitespaces Parser parser = new Parser(); try { parser.setResource(filename); parser.visitAllNodesWith(sb); } catch (ParserException e) { return null; } String docText = sb.getStrings(); return docText; }