How can I build HTML pages with the HTML editor kit package available in Java?

How can I build HTML pages with the HTML editor kit package available in Java?

I would like to ask you about the HTML Editor Kit package available in Java. How can I use it to build HTML Pages from my Java code and when is it useful? Can you provide me with some working examples?

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to keep you informed on recent service-oriented architecture (SOA) and SOA-related topics such as integration, governance, Web services, Cloud and more.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSOA.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSOA.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

The following code snippet will construct a pane that displays HTML code. The HTML pane is then added to a scrollPane which is added to a generic JPanel. You can then add the generic JPanel to any dialog, JFrame, bean customizer or other user interface component:

      javax.swing.JEditorPane htmlPane = new javax.swing.JEditorPane();
      htmlPane.setEditable(false);
      htmlPane.setPreferredSize(new Dimension(width, height));
      htmlPane.setContentType("text/html");
      htmlPane.setText("<HTML><HEAD></HEAD><BODY>" + myObject.toHTML() +
"</BODY></HTML>");

      javax.swing.JScrollPane scrollPane = new
javax.swing.JScrollPane(htmlPane);
      scrollPane.setPreferredSize(new Dimension(width, height));
      mainPanel.add(scrollPane, BorderLayout.CENTER);
Note that the toHTML() method is called on myObject to retrieve the HTML view of myObject. A better solution for this would be to return XML from myObject (myObject.toXML() for example) and then combine the XML with an XSLT style sheet to create the HTML to be rendered.

This was first published in March 2002