Is the source of jxbrowser available on a git repo?

307 views Asked by At

https://www.teamdev.com/jxbrowser

I can not find the source code of jxbrowser on a git repo. Is there a public git repo of jxbrowser source code (with all the revision history)?

1

There are 1 answers

2
Vladyslav Lubenskyi On

JxBrowser is a proprietary commercial library. Therefore, they don't expose their code to the public. You can consider using free alternatives:

  • JCEF. https://bitbucket.org/chromiumembedded/java-cef/src

    These guys are based on CEF, a very powerful framework. But it's notoriously harder to use. But it's powerful and open source.

  • JavaFX WebView.

    This is a web component, a part of JavaFX. It's much simpler and lighter than both JxBrowser and JCEF. It's not as functional, but very easy to use. If you need to show simple pages in your app, that's your choice.