Here you can find the source of inputComboBox(JComboBox
public static void inputComboBox(JComboBox<String> cbx, String[] str)
//package com.java2s; //License from project: Open Source License import javax.swing.JComboBox; public class Main { public static void inputComboBox(JComboBox<String> cbx, String[] str) { for (int i = 0; i < str.length; i++) { cbx.addItem(str[i]);/*from w w w. j a v a 2 s . co m*/ } } }