Scott Seto
Scott Seto

Reputation: 15

Generating Java GUI code from basic HTML/Javascript

I would like to know the best way and what it would require(languages/libraries) to generate Java GUI code from an HTML page with embedded Javascript code. It would emulate the HTML objects(like divs/tables) and their interactions. I don't need to emulate any complicated Javascript libraries, but just get basic functionality like handling mouse clicks/movements and key presses which Java can easily support.

I was thinking of representing all of the HTML objects using absolute positioning in Java without having to generate code for layout managers.

EDIT: Regarding seand's comment: I meant that I don't need to convert code written in JQuery or other Javascript libraries into Java GUI code. I only want to deal with simple Javascript.

Upvotes: 1

Views: 429

Answers (1)

Valram
Valram

Reputation: 125

I was searching as well and it appears that nothing seems really meant to do that.

However one option is to embed a browser into your app using something like:

http://djproject.sourceforge.net/ns/
http://www.eclipse.org/articles/Article-SWT-browser-widget/browser.html

And then used it to load your HTML pages.

Upvotes: 1

Related Questions