Is it possible create a Java desktop GUI with HTML?

10,240

JavaFX 2.0 might be what you are looking for (ignore JavaFX 1.0 which is very outdated):

  • It has an HTML-style layout language called FXML.
  • It also allows skinning of user interfaces with CSS-style themes.
  • It also has a WebView component that allows you to embed any web / HTML content in your app.

Having said that, I don't think Swing is hard to use when you get used to it, particularly if you use an improved layout manager like MigLayout.

Share:
10,240
Renato Dinhani
Author by

Renato Dinhani

Solving real problems.

Updated on June 04, 2022

Comments

  • Renato Dinhani
    Renato Dinhani almost 2 years

    Possible Duplicate:
    How to use HTML and CSS as a Java application GUI?

    I'm trying to found another way to create GUIs for Java programs without Swing. I want something more dynamic and easy to use than Swing.

    There is anything that I can use for this?

    In truth, I want something similar to HTML. Exists?