我有一个名为CountryList的arraylist,这是一个国家/地区列表,然后我使用了代码
jComboBox1.addItem(countries);
尝试将arraylist添加到组合框中,但没有任何反应,没有国家列表出现。
我似乎找不到任何可以解释为什么这不起作用的地方。
以下是我被告知应该包含其中所有国家/地区的代码:
public class CountryList
{
public static void main(String[] args)
{
List<Country> countries = new ArrayList<Country>();
Locale[] locales = Locale.getAvailableLocales();
for (Locale locale : locales)
{
String iso = locale.getISO3Country();
String code = locale.getCountry();
String name = locale.getDisplayCountry();
if (!"".equals(iso) && !"".equals(code) && !"".equals(name))
{
countries.add(new Country(iso, code, name));
}
}
Collections.sort(countries, new CountryComparator());
for (Country country : countries)
{
System.out.println(country);
}
}
}
class CountryComparator implements Comparator<Country>
{
private Comparator comparator;
CountryComparator()
{
comparator = Collator.getInstance();
}
public int compare(Country o1, Country o2)
{
return comparator.compare(o1.name, o2.name);
}
}
class Country
{
private String iso;
private String code;
public String name;
Country(String iso, String code, String name)
{
this.iso = iso;
this.code = code;
this.name = name;
}
public String toString()
{
return iso + " - " + code + " - " + name.toUpperCase();
}
}
修改
for (CountryList country : countries)
{
jComboBox1.addItem(country);
}
答案 0 :(得分:2)
使用默认的组合框模型。
jComboBox1.setModel(new DefaultComboBoxModel(countries.toArray()));
答案 1 :(得分:1)
您需要一次添加一个国家/地区,而不是整个ArrayList。您可以遍历每个项目并将其添加到组合框中。
for(int i = 0; i < countries.size(); i++) {
jComboBox1.addItem(countries.get(i));
}