gpt4 book ai didi

java - javaw.exe 的多个实例

转载 作者:行者123 更新时间:2023-12-04 06:16:09 28 4
gpt4 key购买 nike

任务管理器显示许多 javaw.exe 实例驻留在内存中,导致 Windows 内存不足。我正在使用此代码关闭我的 Java 应用程序:

SwingUtilities.invokeLater(new Runnable() 
{
public void run()
{
Form1 frame = new Form1();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
});

我该如何解决这个问题?

最佳答案

尝试这个:

frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent we){
System.exit(0);
}

希望能帮助到你。

关于java - javaw.exe 的多个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7218366/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com