TagSoup vs. Jsoup vs. HTML Parser vs. HotSax vs [c

2020-02-07 17:16发布

The abundance of HTML parsers to choose from (and stick with) is mind boggling:

http://java-source.net/open-source/html-parsers

How do I choose one that best suits the following requirements:

  1. Mature (fewer bugs than the rest)
  2. Live and breathing (i.e. being maintained)
  3. Fast and resource-efficient (intended to run on Android)

Based on your experience, which HTML parser would you recommend (for meeting the above requirements) and why?

1条回答
▲ chillily
2楼-- · 2020-02-07 17:23

Well, I found the answer, which was given by @BalusC on a different thread:

  1. If you just want to use a XML based tool to traverse it: JTidy.
  2. If you like to unit test the HTML: HtmlUnit
  3. If you like to extract specific data from the HTML: Jsoup

Thank you @BalusC.

查看更多
登录 后发表回答