Creating Check Box in Java Swing

This section illustrates you how to create a Check Box component in Java Swing.

Creating Check Box in Java Swing

This section illustrates you how to create a Check Box component in Java Swing.

 Creating Check Box in Java Swing

Creating Check Box in Java Swing

     

This section illustrates you how to create a Check Box component in Java Swing.

In this section, you can learn simply creating the Check Box in Java Swing. Check Boxes are created in swing by creating the instance of the JCheckBox class using it's constructor which contains the string which has to be shown beside the check box on the frame or window like this:

Swing Check Box Component

This is written like:

JCheckBox chk = new JCheckBox("This is the Check Box");

This component of the javax.swing.*; is added to the frame using the add(component) method of the JFrame class.

Here is the code of the program:

import javax.swing.*;

public class CreateCheckBox{
  public static void main(String[] args){
  JFrame frame = new JFrame("Check Box Frame");
  JCheckBox chk = new JCheckBox("This is the Check Box");
  frame.add(chk);
  frame.setSize(400400);
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  frame.setVisible(true);
  }
}

Download this example.