java - 第二次调用类程序中断,Java

标签 java swing

好吧,请耐心听我说,因为我真的是新人。 为了保持简单和简短,我有一个类,它有一个 jButton (在登录框架上),它有一个应该从另一个类打开框架的操作,如下所示:

if (user.contains("admin") && pass.contains("admin"))
            {
                Admin adminProz = new Admin();
                adminProz.setVisible(true);
                frame.setVisible(false);
            }

暂时它工作得很好,但后来我回到“登录”页面进行第二次登录尝试,编译器中断了......以下是我在控制台中得到的文本:

Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: The frame is displayable.
at java.awt.Frame.setUndecorated(Unknown Source)
at prozori.Admin.<init>(Admin.java:50)
at prozori.LoginWin.<init>(LoginWin.java:53)
at prikaz.Logout$1.actionPerformed(Logout.java:36)
at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at javax.swing.JComponent.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
at java.awt.EventQueue.access$500(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue$4.run(Unknown Source)
at java.awt.EventQueue$4.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)

最佳答案

在框架可见后,不应调用您尝试调用的方法。

java.awt.Frame 的文档对此进行了介绍。

摘自javadoc:

This method can only be called while the frame is not displayable.

Throws:
  IllegalComponentStateException - if the frame is displayable

因此,只需将调用 setUndecorated 的位置移动到显示 Frame 之前即可。

关于java - 第二次调用类程序中断,Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62460943/

相关文章:

java - 在 main() 中使用带有 int 的类

java - 是否有 OAuth 2 服务器端 PHP 或 Java 实现?

java - groovy ActionListener 在一种情况下不起作用

java - 如何将图像多数组添加到 JLabel 多数组到 Box

java - 搜索深层节点

java - Java中递归对LinkList进行合并排序

java - 在 Java 中调整图像大小以减小图像大小

java - JPanel 填满整个 JScrollPane

Java 无法关闭 JFrame

java - 单击按钮后将对象添加到 JPanel