Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebKit in Java application

Tags:

webkit

Is it possible to integrate a webkit engine in a java application.

Here is my thinking, I would like to implement my User Interface using javascript and business logic in Java and want to communicate back and forth between the js and java. I have looked at titanium and chromiumembedded. But i dont get the complete picture. Can anyone give me a good explanation of webkit being used in a standalone application.

like image 275
Kathir Avatar asked Dec 27 '22 10:12

Kathir


1 Answers

There are a few solutions, the main one being for SWT. See here for the SWT solution. There was a similar question here referring to SWING.

Edit: Oh my, I can't believe I forgot Lobo, a browser written in Java. More Specifically, their Browser API providers support for embedding. This seems to be the better solution for cross-platform and possibly stability. I'm not 100% sure on the first two solutions' development. Hope that provides some insight.

like image 66
PlagueEditor Avatar answered Mar 15 '23 07:03

PlagueEditor