所以我正在尝试使用

gender.setText(beingEdited.getGender());


性别是ComboBox,我得到的错误是

cannot find symbol
symbol:   method setText(String)
location: variable gender of type JComboBox
----
(Alt-Enter shows hints)


我怎样才能解决这个问题?提前致谢

最佳答案

请使用setValueAtJComboBox CellEditor将更新为新值

myTable.setValue(beingEdited.getGender(), row, column);

关于java - 将组合框转换为字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16964256/

10-13 05:23