Rendering HTML in your Swing Applications
I recently wrote a news reader application (RSS only at the moment) that displays the messages using HTML. In doing so, I discovered the terrible state of the javax.swing.text.html.HTMLEditorKit. From the Javadoc: The default support is provided by this class, which supports HTML version 3.2 (with some extensions), and is migrating toward version 4.0. Migrating toward …