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.
アプリケーションを閉じる直前にいくつかのアクションを実行したいと考えています。
アクションリスナーはあるようですが、フレームなどはありません。唯一のJavaファイルです。
ある種のコントロールを設定するにはどうすればよいですか?
I want to make some actions just before my application close.
おそらくシャットダウンフックを探しているでしょう:
Runtime.getRuntime().addShutdownHook(...)
これは、シャットダウンフックの実用的な使用法を求める SO の質問 (および優れた回答) です。
Java のシャットダウン フックの便利な例は?