Avoid Uppercase HTML

Upper case HTML doesn't work:

JButton jb = new JButton("<HTML><B><I>Hello World!</I></B></HTML>");

On the other hand, Sun has no qualms with malformed HTML that omits the end tags like this:

JButton jb = new JButton("<html><b><i>Hello World!");


Previous | Next | Top | Cafe con Leche

Copyright 1999, 2000 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified July 16, 2000