2

I want to embed a webbrowser in two stages of my javafx program. Using javafx webview does not work for the intended content (360° view generated with Panotour). So I have to search for alternatives.

I failed using JCEF; it does not work with javafx (neither with using SwingNode and GLJPanel).

JxBrowser looks promising, but is very expensive and closed source.

Can someone recommend a opensource(I have to extend the webbrowser)and html5 browser to embed in a javafx view? Nice to have with gpu rendering.

Thanks and greets

solarisx
  • 157
  • 1
  • 11

2 Answers2

1

Unfortunately it works only with AWT/Swing because it's too complicated to embed it in SwingNode.

You'd have to change the structure of your application if you want to use JCEF. It's not as hard as you think, and remember - you can also embed JavaFX components in Swing using JFXPanel. The project is still developing and trying to be more friendly, you can even found maven builds and forks:

Currently, you won't find a better alternative.

dzikoysk
  • 1,560
  • 1
  • 15
  • 27
0

JxBrowser looks promising, but is very expensive and closed source.

If you your application is an open-source project, you can obtain the JxBrowser Open-Source license here.

Nikita Shvinagir
  • 438
  • 3
  • 10