如何检测JComboBox是否为空?它是这样的:
combobox.isEmpty()
答案 0 :(得分:12)
JComboBox.getItemCount()
出了什么问题?如果此方法返回0
,则该组件为空。
答案 1 :(得分:1)
if(JComboBox.getItemCount() != 0){
//JComboBox is not empty - do something..
}
答案 2 :(得分:0)
我想你正在寻找getItemCount()方法