Java JComboBox set selected item

Description

Java JComboBox set selected item

import java.awt.FlowLayout;

import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JPanel;

class Demo extends JPanel {
  public Demo() {
    /*  w  w  w  .  j a  v a2s  . c om*/
    String options[] = { "CSS", "HTML", "Java", "Javascript" };
    setLayout(new FlowLayout());
    JComboBox<String> jcb = new JComboBox<String>(options);
    jcb.setEditable(true);
    add(jcb);

    jcb.setSelectedIndex(1);
  }
}
public class Main {
  public static void main(String[] args) {
    Demo panel = new Demo();
    JFrame application = new JFrame();
    application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    application.add(panel);
    application.setSize(250, 250);
    application.setVisible(true);
  }
}



PreviousNext

Related