所以我正在尝试使用
gender.setText(beingEdited.getGender());
性别是
ComboBox
,我得到的错误是cannot find symbol
symbol: method setText(String)
location: variable gender of type JComboBox
----
(Alt-Enter shows hints)
我怎样才能解决这个问题?提前致谢
最佳答案
请使用setValueAt。 JComboBox
CellEditor
将更新为新值
myTable.setValue(beingEdited.getGender(), row, column);
关于java - 将组合框转换为字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16964256/