April 2023

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 …

Rendering HTML in your Swing Applications Read More »

Quick RMI tips

Our class has just started learning about RMI. Many of the tutorials I’ve looked at are a bit out of date, however. For instance, many of them still mention generating stubs and/or skeletons using the rmic command, but this is no longer necessary as of jdk 1.5. All you have to do now is compile your classes and stub files …

Quick RMI tips Read More »

Scroll to Top