Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Java Swing GUI

How to Know Which Button is Clicked in Java Swing

In this tutorial, we are going to see how to know which button is clicked in java swing.

To be able to check if a button is clicked using Java, we create a button and add an event listener to the button, so that when the button is clicked, a method can be called. We can create the method to do anything we want it to do.

In the following example we change the text of JLbale depending on which button is clicked:


[st_adsense]  

Java Program to Know Which Button is Clicked:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import javax.swing.*;
import java.awt.event.*;
public class CheckButton extends JFrame
{
private JButton button1, button2;
private JLabel label;
public static void main(String[] args) {
new CheckButton();
}
public CheckButton()
{
this.setSize(300,300);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("Click event");
this.setLayout(null);
Clicklistener click = new Clicklistener();
button1 = new JButton ("Button1");
button1.setBounds(40,100,100,40);
button1.addActionListener(click);
button2 = new JButton ("Button2");
button2.setBounds(150,100,100,40);
button2.addActionListener(click);
label = new JLabel();
label.setBounds(100,150,150,20);
this.add(button1);
this.add(button2);
this.add(label);
this.setVisible(true);
}
private class Clicklistener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
if (e.getSource() == button1)
{
label.setText("Button 1 is clicked!");
}
if (e.getSource() == button2)
{
label.setText("Button2 is clicked!");
}
}
}
}
import javax.swing.*; import java.awt.event.*; public class CheckButton extends JFrame { private JButton button1, button2; private JLabel label; public static void main(String[] args) { new CheckButton(); } public CheckButton() { this.setSize(300,300); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setTitle("Click event"); this.setLayout(null); Clicklistener click = new Clicklistener(); button1 = new JButton ("Button1"); button1.setBounds(40,100,100,40); button1.addActionListener(click); button2 = new JButton ("Button2"); button2.setBounds(150,100,100,40); button2.addActionListener(click); label = new JLabel(); label.setBounds(100,150,150,20); this.add(button1); this.add(button2); this.add(label); this.setVisible(true); } private class Clicklistener implements ActionListener { public void actionPerformed(ActionEvent e) { if (e.getSource() == button1) { label.setText("Button 1 is clicked!"); } if (e.getSource() == button2) { label.setText("Button2 is clicked!"); } } } }
import javax.swing.*;
import java.awt.event.*;

public class CheckButton extends JFrame
{
  private JButton button1, button2;
  private JLabel label;
  
  public static void main(String[] args) {
    new CheckButton();
  }

  public CheckButton()
  {
    this.setSize(300,300);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setTitle("Click event");
    this.setLayout(null);

    Clicklistener click = new Clicklistener();

    button1 = new JButton ("Button1");
    button1.setBounds(40,100,100,40);
    button1.addActionListener(click);

    button2 = new JButton ("Button2");
    button2.setBounds(150,100,100,40);
    button2.addActionListener(click);
    
    label = new JLabel();
    label.setBounds(100,150,150,20);
    
    this.add(button1);
    this.add(button2);
    this.add(label);
    this.setVisible(true);
  }
    
  private class Clicklistener implements ActionListener
  {
    public void actionPerformed(ActionEvent e)
    {
      if (e.getSource() == button1)
      {
        label.setText("Button 1 is clicked!");
      }
      
      if (e.getSource() == button2)
      {
        label.setText("Button2 is clicked!");
      }
    }
  }
}

Output:


[st_adsense] mcq

Leave a Reply

Your email address will not be published. Required fields are marked *