Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java equivalent to PHP Simple HTML DOM Parser

Tags:

java

html

dom

Since I have to multithread which I can not eloquently solve in PHP I would like to programm in Java, unfortunately I could not finde a library which will allow me to parse a HTML DOM as robustly, quickly and easily as in PHP Simple HTML DOM Parser. Do you know alternatives in Java that are as easy to use?

like image 697
Dominik Avatar asked Dec 27 '22 19:12

Dominik


1 Answers

I went from Simple HTML DOM Parser to JSoup and I'm quite happy with it.

like image 133
RubenGM Avatar answered Dec 30 '22 08:12

RubenGM