1

Related to the question here. Is there any way to embed the system default browser rendering engine in a Netbeans RCP application? For example, on Windows I want IE system default to launch in the embedded browser. It seems easier to do in a C# .net app since we have the webbrowser control in the .net framework. Including controlling compatibility options.

I think JxBrowser is quite an expensive solution for just including IE (instead of the JDK default webkit) and people have still reported negative experiences.

Community
  • 1
  • 1
iceman
  • 4,211
  • 13
  • 65
  • 92

1 Answers1

0

JxBrowser doesn't support MS IE engine anymore. Now, it integrates with Chromium engine only, so you can embed Chromium engine into your Java Swing/JavaFX application.

If you need to integrate with MS IE engine only, then I recommend that you take a look at JExplorer library. This library allows embedding MS IE WebBrowser control into Java Swing application.

Vladimir
  • 1
  • 1
  • 23
  • 30