Subhrajyoti Majumder
Subhrajyoti Majumder

Reputation: 41220

Java integrated or embedded browser

I need a integrated or embedded java browser. I used WebEngine of javafx which support basic css as well html & java script but could not able to run flash file. Any way to do so.

Or any other Project u know which could fulfill my requirement.

Upvotes: 1

Views: 3124

Answers (2)

Vladimir
Vladimir

Reputation: 2277

You can also look at JxBrowser Java library that allows embedding Chromium-based web browser control into Java AWT/Swing application.

It supports both Java Swing and JavaFX.

BTW: the browser control is totally lightweight. All rendering happens in a separate native process by native Chromium engine. The web page looks like it's displayed in Google Chrome.

Upvotes: 3

Daniel Voina
Daniel Voina

Reputation: 3215

Check those (although they are not JavaFX but I suppose that they can be used):

  1. http://lobobrowser.org/java-browser.jsp - pure Java

  2. http://www.javadesktop.org/articles/jdic/index.html - better imho, but no longer maintained

Upvotes: 3

Related Questions