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); を呼び出します。