Source of TestJEditorPane1.java


  1: //TestJEditorPane1.java

  3: import java.net.URL;
  4: import javax.swing.JEditorPane;
  5: import javax.swing.JScrollPane;
  6: import javax.swing.JFrame;

  8: public class TestJEditorPane1
  9: {
 10:     public static void main(String[] args)
 11:     {
 12:         try
 13:         {
 14:             JEditorPane jep = new JEditorPane("text/html", "<h1>Hello!</h1>");
 15:             JFrame jf = new JFrame("JEditorPaneTest");
 16:             jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 17:             jf.add(jep);
 18:             jf.setSize(300, 200);
 19:             jf.setVisible(true);
 20:         }
 21:         catch (Exception e)
 22:         {
 23:         }
 24:     }
 25: }