Getting the Items in a JComboBox Component

// Create a read-only combobox String[] items = {"item1", "item2", "item3"}; JComboBox cb = new JComboBox(items); // Get number of items int num = cb.getItemCount(); // Get items for (int i=0; i<num; i++) { Object item = cb.getItemAt(i); } // [item1, item2, item3]

Post a comment

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image. Ignore spaces and be careful about upper and lower case.