Java Browser Library

I need to implement a simple browser in java. I studied several features, including JxBrowser, JBrowser, JavaFX (WebEngine + WebView) and others. JxBrowser has potential, but it is a paid library that I would like to avoid.

This browser should be able to handle all web functions, including JavaScript and HTML5, at the same time capable of connecting through a proxy. Therefore, a web engine such as Gecko might be the best solution.

Therefore, I would like to get tips on libraries that can implement the Gecko engine (including XULRunner) with the ability to change the basic settings of Gecko. Also, if you know any other possible solution that does not include Gecko, feel free to discuss.

+5
source share
1 answer

Have you tried the SWT browser widget ?

For the proxy server in the SWT browser, see How to set the proxy for the browser to use? ,

+1
source

All Articles