如何获取 JComponent 名称(JComboBox、JCheckBox、JTextComponent...等)我如何获取 fieldName 以将此名称放入 HashMap,例如:
HashMap<String,String> map;
public HashMap<String,String> getHash(){
map = new HashMap();
ArrayList<JCombobox> list = className.getCombobox();
for(int index=0;index<list.size();index++){
map.putt(list.get(index).getName , list.get(index).getSelectedItem());
}
return map;
}
getName 返回“null”我有组件.setName("name") 方法的大格式....请帮助)