我一直在寻找一种方法来JComboBox
,其中列表中的项目正常显示,但在编辑字段中只显示一个数字。
我遇到了这段代码(只是根据我的需要稍加修改):
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import javax.swing.plaf.basic.*;
public class ComboBoxItem extends JFrame implements ActionListener {
public ComboBoxItem() {
Vector model = new Vector();
model.addElement( new Item(1, "car" ) );
model.addElement( new Item(2, "plane" ) );
model.addElement( new Item(3, "train" ) );
model.addElement( new Item(4, "boat" ) );
JComboBox comboBox;
comboBox = new JComboBox( model );
comboBox.addActionListener( this );
getContentPane().add(comboBox, BorderLayout.NORTH );
comboBox = new JComboBox( model );
// I want the comboBox editable.
//comboBox.setEditable(true);
comboBox.setRenderer( new ItemRenderer() );
comboBox.addActionListener( this );
getContentPane().add(comboBox, BorderLayout.SOUTH );
}
public void actionPerformed(ActionEvent e) {
JComboBox comboBox = (JComboBox)e.getSource();
Item item = (Item)comboBox.getSelectedItem();
System.out.println( item.getId() + " : " + item.getDescription() );
}
class ItemRenderer extends BasicComboBoxRenderer {
public Component getListCellRendererComponent(
JList list, Object value, int index,
boolean isSelected, boolean cellHasFocus) {
super.getListCellRendererComponent(list, value, index,
isSelected, cellHasFocus);
if (value != null) {
Item item = (Item)value;
setText( item.getDescription().toUpperCase() );
}
if (index == -1) {
Item item = (Item)value;
setText( "" + item.getId() );
}
return this;
}
}
class Item {
private int id;
private String description;
public Item(int id, String description) {
this.id = id;
this.description = description;
}
public int getId() {
return id;
}
public String getDescription() {
return description;
}
public String toString() {
return description;
}
}
public static void main(String[] args) {
JFrame frame = new ComboBoxItem();
frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
frame.pack();
frame.setVisible( true );
}
}
这很有效,直到我使用comboBox.setEditable(true);
编辑comboBox。
背景资料:
我计划在用户在编辑字段中输入时,使用数据库中的对象填充弹出列表。当用户随后从弹出列表中选择一个项目时,编辑字段应仅显示对象的id
,但弹出列表应显示更多信息,以便用户可以做出明智的选择。
任何人都可以帮助我完成这项工作是否可以编辑?
答案 0 :(得分:0)
您需要覆盖组合框的默认编辑器,因为当您将组合框设置为可编辑时,它会使用编辑器在下拉列表中呈现您选择的内容。
以下是使用BasicComboBoxEditor实现的一种方法。您只需要覆盖setItem方法。
comboBox.setEditor(new ItemEditor());
class ItemEditor extends BasicComboBoxEditor {
public void setItem(Object anObject) {
Item item = (Item) anObject;
editor.setText(item.getId() + "");
}
}