Question

Is there a way to get the Chrome browser inside of java applications similar to the way Awesomium works in C++ and C# applications?

Was it helpful?

Solution

There is currently no way getting the UI portion into a Java. You should consider just using barebone WebKit + V8 with many JNI calls. You could consider writing a JNA wrapper around those.

To make your JNA easier, you can wrap Chromium Embedded Framework

OTHER TIPS

Try javacef. This is open source project. This project can embed Chromium browser in Java SWT with multitab browser support, cookies manipulation, tab settings, printing, back, forward, refresh buttons and enhanced file download. This project is based on Chromium Embedded Framework (CEF).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top