1

下面的代码片段有问题,如果在包含小程序窗口的浏览器中按下重新加载按钮,它将无法工作。它适用于小程序的第一次启动,但不适用于重新加载。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));

}
4

1 回答 1

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 然后使用属性更容易。

于 2010-11-08T20:30:09.707 回答