奇怪的HTMLEditorKit问题

时间:2010-11-08 20:17:39

标签: java swing appletviewer

下面的代码段有问题,如果在包含applet窗口的浏览器中按下重新加载按钮,它将无法工作。它适用于applet的第一次启动,但不适用于重新加载。 AppletViewer中也发生了同样的事情。

原因是,Text.setText(...)调用在HTMLParser中深度崩溃并出现NullPointerException。我已经尝试将setText调用放入start(),但这没有帮助。

你知道任何解决方法吗?谢谢你的帮助。 RG

@Override
public void init()
{
    //Execute a job on the event-dispatching thread:
    //creating this applet's GUI.
    try
    {
        javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
            public void run() {
                createGUI();
            }
        });
    }
    catch (Exception e)
    {
        e.printStackTrace();
        System.err.println("createGUI didn't successfully complete");
    }
}

private void createGUI()
{
    ((JComponent)this.getContentPane()).setBorder(new CompoundBorder
            (BorderFactory.createRaisedBevelBorder(),
                    new EmptyBorder(5,5,5,5)));

    BorderLayout bl=new BorderLayout();
    bl.setVgap(5);
    setLayout(bl);

    Input=new JTextField();
    Input.setFont(new Font("arial",Font.PLAIN,14));
    add("North",Input);
    Input.addActionListener(this);

    HTMLEditorKit kit=new HTMLEditorKit();
    Text=new JTextPane();
    Text.setFont(new Font("arial",Font.PLAIN,14));
    Text.setEditorKit(kit);
    Text.setText("<p>Test</p>");
    Text.setEditable(false);
    Text.setBackground(Color.white);
    add("Center",new JScrollPane(Text));

}

1 个答案:

答案 0 :(得分:1)

不确定您从哪里复制该代码,但它看起来非常古老。

add("North",Input); 
add("Center",new JScrollPane(Text)); 

在向容器添加组件时,这不是指定约束的首选方法。阅读API以了解推荐的方法。或者阅读关于“如何使用边框布局”的Swing教程作为示例。

不确定为什么要创建编辑器套件。你的文字也不是正确的HTML(不知道它是否有所作为)。

我过去刚刚使用过如下代码:

String text = "<html><body>Some text><body></html>";
JEditorPane editor = new JEditorPane("text/html", text);

我还发现使用JTextPane更容易,然后在需要设置文本样式时使用属性。