我的Java应用程序中有一个JFrame表单,它有几个组合框,它们应该是填充的,除了显示没有意义的东西(如transfer.TransferObject@859ae5 ....),我做了组合框所指的类中的toString方法(我对其他组合框做了同样的事情并且它们正常工作),但是这个组合仍然显示了这个transfer.TransferObject@859ae5 ... 例如,mz组合框应显示患者的姓名,因此在患者类中我这样做:
@Override
public String toString() {
return name;
}
但它每次都有效,除了现在这个组合。问题是什么? 感谢
答案 0 :(得分:2)
覆盖toString
方法应该有效但不是一个好习惯。我建议您实现ListCellRenderer
,例如:
public class MyCellRenderer extends DefaultListCellRenderer {
@Override
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
if(value != null){
if(value instanceof Patient){
Patient p = (Patient) value;
setText(p.getName());
} else {
setText(value.toString());
}
if(isSelected){
setBackground(...);//set background color when item is selected
setForeground(...);//set foreground color when item is selected
} else {
setBackground(...);//set background color when item is not selected
setForeground(...);//set foreground color when item is not selected
}
return this;
} else {
// do something
return this;
}
}
}//end of MyClass declaration
然后你必须在向其添加项目之前将此类的实例设置为JComboBox :
yourJComboBox.setRenderer(new MyCellRenderer());
/* Now you can add items to your combo box */