5

这段代码在各个方面都有效,但现在它没有完全关闭,当我点击窗口上的“X”时它似乎挂起。在我关闭后,如果我最小化屏幕然后最大化它,它就会变成黑色。我可以让它完全关闭的唯一方法是退出 Eclipse,我的 IDE。

在此之前,我有不同的外观和感觉。我偷了一些 GUI 代码,我在 netbeans 中制作它,让它看起来比我手工制作的更好。所以我认为它与“nimbus”的外观和感觉有关,但也许我没有正确关闭其他对象,现在这是一个问题?

static CLUtilCompact app = null; // this
static AuxPPanel aux = null; // JPanel
static StatusPanel stat = null; // JPanel
static UserActPanel user = null; // JPanel
static InputPanel input = null; // JPanel
static Automator auto = null;   
        //public class Automator extends Thread 
       //   implements NativeMouseInputListener, NativeKeyListener  

public CLUtilCompact() 
{
    aux = new AuxPPanel();
    stat = new StatusPanel();
    user = new UserActPanel();
    auto = new Automator();
    input = new InputPanel();
    GlobalScreen.getInstance().addNativeKeyListener(auto);
    GlobalScreen.getInstance().addNativeMouseListener(auto);
    GlobalScreen.getInstance().addNativeMouseMotionListener(auto);
    auto.start();
}

public static void main(String[] args) 
{
    // Create the App, and panels
    app = new CLUtilCompact();
    // Let the panels have access to app now
    aux.setApp(app);
    stat.setApp(app);
    user.setApp(app);
    auto.setApp(app);
    app.updateOutput("Started");
    app.updateStatus("Started");
    input.setApp(app);

    try {
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }
    } catch (ClassNotFoundException ex) {
        java.util.logging.Logger.getLogger(CLUtilCompact.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
        java.util.logging.Logger.getLogger(CLUtilCompact.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (IllegalAccessException ex) {
        java.util.logging.Logger.getLogger(CLUtilCompact.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (javax.swing.UnsupportedLookAndFeelException ex) {
        java.util.logging.Logger.getLogger(CLUtilCompact.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    }
    //</editor-fold>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(new Runnable() {
        public void run() {
            app.setDefaultCloseOperation(EXIT_ON_CLOSE);
            app.setAlwaysOnTop(true);
            app.setVisible(true);
        }
    });
}

类 Automator 运行和关闭

public void run()
{
    try // to make the Global hook
    {
        GlobalScreen.registerNativeHook();
    }
    catch (NativeHookException ex){theApp.updateOutput("No Global Keyboard or Mouse Hook");return;}
    try // to create a robot (can simulate user input such as mouse and keyboard input)
    {
        rob = new Robot();
    } 
    catch (AWTException e1) {theApp.updateOutput("The Robot could not be created");return;}

    while(true) {}
}

public void OnClose()
{
    GlobalScreen.unregisterNativeHook();
}

编辑:日食中的小红框将其关闭,但它仍然没有。

4

6 回答 6

7

将默认关闭操作设置为“DISPOSE_ON_CLOSE”而不是 EXIT_ON_CLOSE(一般提示)

Hovercraft Full Of Eels 评论非常有用。如果您有任何未部署的窗口或非守护线程,您的应用程序将不会终止

检查所有活动框架.. 使用Frame.getFrames() 如果所有 Windows/框架都已处理完毕,则调试以检查任何仍在运行的非守护线程

一种残酷但有效的解决方案是System.exit(0)

类应该实现 WindowListener

// Use this method
public void windowClosed(WindowEvent e){
    System.exit(0);
}
于 2013-05-17T15:54:28.520 回答
2

我冒险猜测这行代码

while(true) {}

可能是你的罪魁祸首。

于 2013-05-22T20:40:59.310 回答
1

请务必将默认关闭操作设置为 DISPOSE_ON_CLOSE 而不是 EXIT_ON_CLOSE

frameName.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

有关更多信息: 基本 Java Swing,如何退出和处置您的应用程序/JFrame

于 2013-05-22T16:17:38.737 回答
0

投机。对于 Nimbus 来说,拥有静态(摇摆)类可以保留一些东西。由于经常使用静态也不是很好看,尝试取消它们,作为 JFrame 应用程序的字段。

于 2013-05-22T10:40:10.177 回答
0
 http://stackoverflow.com/questions/2352727/closing-jframe-with-button-click

   JButton button = new JButton("exit");
    button.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
   frame.setVisible(false);
            frame.dispose();

        }
于 2013-05-22T10:02:38.827 回答
0

我有同样的问题,我只是在最后添加了这段代码,当它出现黑色并且没有关闭时,我只需输入 1 并在下一次修复它。

Scanner scan=new Scanner(System.in);
int exit=scan.nextInt();
if (exit==1) System.exit(0);
于 2018-06-24T07:56:46.857 回答