Java GUIを使用して新しいウィンドウを開くときに、古いウィンドウを閉じるか、古いウィンドウを新しいウィンドウにリダイレクトしたい
setVisible(false)
しかし、うまくいきませんでした。
ActionListener コード全体:
public class Domainevent implements ActionListener{
public void actionPerformed (ActionEvent event){
GUI gg = new GUI();
DomainGUI ee = new DomainGUI();
gg.dispose();
ee.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
ee.setTitle("Forbidden Domains");
ee.setSize(700,500);
ee.setLocation(350,100);
ee.setResizable(false);
}
}