Java Swing How to - Get the Selected Items/index in JList








Question

We would like to know how to get the Selected Items/index in JList.

Answer

//from   ww  w  .  j  a  va 2 s  .c o  m


import javax.swing.JList;

public class Main {
  public static void main(String[] argv) throws Exception {
    String[] items = { "A", "B", "C", "D" };
    JList list = new JList(items);
    // Get the index of all the selected items
    int[] selectedIx = list.getSelectedIndices();

    // Get all the selected items using the indices
    for (int i = 0; i < selectedIx.length; i++) {
      Object sel = list.getModel().getElementAt(selectedIx[i]);
    }

    // Get the index of the first selected item
    int firstSelIx = list.getSelectedIndex();

  }
}