Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java - HTML5 alternative to JEditorPane

I am trying to create a simple web browser for a project, but I am using JEditorPane to render and display HTML. I have heard that JEditorPane should not be used as a browser component because it does not support anything above HTML3.2 (and even then doesn't display it properly), but I can't seem to find an alternative for HTML5. Can anyone help me? Thanks in advance.

like image 271
condorcraft110 Avatar asked Nov 04 '12 12:11

condorcraft110


1 Answers

You can use JavaFX-2 Webview. From the JavaFX-2 Adding HTML Content tutorial docs:

The embedded browser component is based on WebKit, an open source web browser engine. It supports Cascading Style Sheets (CSS), JavaScript, Document Object Model (DOM), and HTML5.

For integration of javafx-2 with swing I recommend you to read the Swing and Javafx-2 Interoperability article.

I hope it helped. Cheers

like image 137
Bruno Vieira Avatar answered Sep 21 '22 16:09

Bruno Vieira