我正在从班级编写一个程序,我正在尝试将其设置为创建一个窗口,以按钮的形式显示搜索结果。我希望如果没有搜索结果,窗口会调出一个弹出警告,说明这样,然后关闭窗口。
我已经设置了每当我想让窗口关闭时,我调用一个只包含this.dispose()的CloseWindow()方法;命令。如果我按下按钮后从actionEvent方法调用它,窗口就会很好地关闭,但是如果我尝试在方法的其他任何地方调用它,它就不会关闭窗口。我缺少一些基本的Java概念吗?我知道JFrame有来自Window类的dispose方法,但“this”似乎只能在某些条件下工作。
相关代码如下:
public class MovieSearch extends JFrame implements ActionListener, Serializable{
private static final long serialVersionUID = 7526471155622776147L;
private Container con = getContentPane();
int llSize, searchResults = 0;
MovieNode currentNode;
String searchText;
JPanel listPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
JScrollPane scrollPane = new JScrollPane(listPanel);
public MovieSearch(String searchText){
super("Search Results");
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
this.searchText = searchText;
con.add(scrollPane);
currentNode = MovieView.firstNode;
for(int i = 0; i < llSize; i++){
if (currentNode.getTitle().indexOf(searchText) != -1) {
BufferedImage Thumbnail = new BufferedImage(200, 300, BufferedImage.TYPE_INT_ARGB);
Thumbnail.getGraphics().drawImage(currentNode.getImage().getImage(), 0, 0, 200, 300, null);
ImageIcon icon = new ImageIcon(Thumbnail);
JButton button = new JButton("Go to " + currentNode.getTitle());
button.addActionListener(this);
button.setVerticalTextPosition(AbstractButton.BOTTOM);
button.setHorizontalTextPosition(AbstractButton.CENTER);
button.setIcon(icon);
listPanel.add(button);
searchResults++;
currentNode = currentNode.getLink();
} else {
System.out.println("String " + currentNode.getTitle() + " does not contain String " + searchText);
currentNode = currentNode.getLink();
}
}
if(searchResults == 0){
int messageType = JOptionPane.ERROR_MESSAGE;
JOptionPane.showMessageDialog(null, "No results match that query.", "NO RESULTS!", messageType);
CloseWindow();
}else{
currentNode = MovieView.firstNode;
repaint();
}
}
public void actionPerformed(ActionEvent e){
Object source = e.getSource();
for(int i = 0; i < llSize; i++){
JButton button;
button = (JButton) source;
if(button.getText().equals(("Go to " + currentNode.getTitle()))){
MovieView.currentNode = currentNode;
MovieView.searchTextField.setText("");
CloseWindow();
}
System.out.println("button is " + button.getText());
System.out.println("text is: " + "Go to " + currentNode.getTitle());
currentNode = currentNode.getLink();
}
}
private void CloseWindow(){
System.out.println("Closing Window");
this.dispose();
}
}
同样,CloseWindow()方法[以及this.dispose()方法]在从ActionEvent方法调用时工作,但不能从其他任何地方调用。 [我已将它插入到其他地方只是为了测试并且已到达但它仍然没有关闭窗口。]
正如您所看到的,我在CloseWindow()方法中放置了一个println,以确保它到达并且每次都到达它,它只是不起作用。
对此的任何见解都将非常感激。谢谢你的时间。
答案 0 :(得分:2)
JOptionPane创建一个“模态对话框”,这意味着“showMessageDialog”之后的语句在对话框关闭之后才会执行。
您有两种选择:
a)创建自己的自定义“非模态对话框”,显示您的消息,然后关闭。 b)阅读JOptionPane API。它向您展示了如何手动访问由JOptionPane类创建的对话框,以便您可以引用该对话框。
在这两种情况下,您需要在显示对话框之前启动Swing Timer。然后,当Timer触发时,您可以放置对话框。