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 を使用して Java アプリケーションを作成しています。私はまだ初心者です。4 つのボタンがあり、ユーザーがそのうちの 1 つをクリックしたときにアイコンを変更したいと考えています。すでにボタンと 1 つのアイコンを配置しましたが、続行する方法がわかりません。
アイコンを変更する が必要にActionListenerなります (これには ImageIcon を使用します)。そのアクションで、クリックに応答する必要があるボタンにその ActionListener を追加します。
ActionListener
button.addActionListener(/*here your listener*/);