当在ActionListener中可见时,JFrame不会绘制内容,只显示白色矩形

时间:2012-03-12 17:20:52

标签: java spring swing jframe actionlistener

我有一个应用程序,在显示Jframe的开头,用户输入必须分析的网页的URL,然后用户点击OK。

当用户点击OK时,actionListener应该这样做: 它应该显示一个带有文本的新Jframe“请稍等,分析网站,这可能需要一点点” 然后它应该启动analyzePage()方法。

问题是用户点击OK按钮后,会显示新的Jframe,但它是空白的,只有里面有白色矩形。只有在analyzePage()方法完成后(多秒后)才会显示Jframe的内容。

    static class OKListener implements ActionListener {

    public void actionPerformed(ActionEvent e) {
        new WaitFrame();
// mf is main frame (the first frame where url was entered and where OK was clicked)
        mf.setEnabled(false);
        address = mf.getURLtext();
        analyzePage();
    }
}

public class WaitFrame extends JFrame {

public WaitFrame() {
    super();
    JFrame wait = this;
    JLabel jl = new JLabel("Čakajte prosím, analyzujem stránku, môže to chvíľu trvať.");
    JPanel jp = new JPanel();
    jp.add(jl);
    wait.getContentPane().add(jp);
    wait.pack();
    wait.setVisible(true);
}
}

1 个答案:

答案 0 :(得分:1)

在AWT-Thread中运行你的JFrame:

//...
java.awt.EventQueue.invokeLater(new Runnable() {
    @Override
    public void run() {
        JFrame waitFrame = new JFrame();
        //...
        waitFrame.pack();
        waitFrame.setVisible(true);
    }
});
//...
// Other things to do ...
// dispose Frame after all, if neccessry ...