Search code examples
javaarraysswingjcomboboxcomboboxmodel

How to bind an array to JComboBox dynamically?


I binding an array to JComboBox like following:

String[] arr={"ab","cd","ef"};
final JComboBox lstA = new JComboBox(arr);

but I want bind array to JComboBox dynamically like following :

final JComboBox lstA = new JComboBox();
void bind()
{
    String[] arr={"ab","cd","ef"};
    // bind arr to lstA     
}

How to do it?


Solution

  • A little odd workaround(mine :)), might useful to you

    final JComboBox lstA = new JComboBox();
    String[] arr={"ab","cd","ef"};
    lstA.setModel(new JComboBox(arr).getModel());