Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在netbeans 7上创建了一个java应用程序。现在通过使用netbeans我创建了应用程序的jar文件。当我点击它时应用程序开始运行。但是如果我关闭应用程序处理的应用程序被杀死,但dist子进程仍然是尽管所有窗口都关闭了,但仍在运行。
您可能打开了一个变量(FileReader,...),请记住您需要关闭它们 close()
如果它是一个 gui 应用程序调用 JFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);