jQuery has powerful on the fly DOM manipulation API like selector.html() gets the html of the specified selector and selector.html(replacement html) replaces html. I am looking for same thing but in Java.
Is there such a Java library? It should also be very fast.
jQuery has powerful on the fly DOM manipulation API like selector.html() gets the html
Share
Try JSoup. It has a an API inspired by jQuery and can handle most HTML pages you throw at it.