I have seen many questions here about displaying HTML content in a swing application. But none of the libraries support html5(I cant afford JxBrowser).
I have some locally stored html5 webpages and i want to show them in my swing application. One idea is embedding firefox or chrome into my java application and removing the controls.
How can I display html5 content in my swing application?
You should look into new JavaFX browser that fully supports HTML5 and written in pure Java. You can easily integrate it into any Swing application – see the official description:
http://docs.oracle.com/javafx/2/swing/swing-fx-interoperability.htm
But i guess it might force you to use JDK7+ to fully support various OS.