基本上,我有JComboBox
,目前,所选值会显示在文本框中的组合框旁边。
但是,我想要做的是,从组合框中选择一个值 - 文本框中显示一个不同的值(此显示的值特定于从组合框中选择的值。
所以在这种情况下,我在组合框中有大小,我希望在文本字段中显示成本。
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class ComboBox{
JComboBox combo;
JTextField txt;
public static void main(String[] args) {
ComboBox b = new ComboBox();
}
public ComboBox(){
String course[] = {"18x18cm (7x7inches)","18x20cm (7x8inches)",};
JFrame frame = new JFrame("Cost Calculator");
JPanel panel = new JPanel();
combo = new JComboBox(course);
combo.setBackground(Color.white);
combo.setForeground(Color.black);
txt = new JTextField(25);
panel.add(combo);
panel.add(txt);
frame.add(panel);
combo.addItemListener(new ItemListener(){
public void itemStateChanged(ItemEvent ie){
String str = (String)combo.getSelectedItem();
txt.setText(str);
}
});
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400,200);
frame.setVisible(true);
}
}
所以我的问题是如何解决这个问题?
答案 0 :(得分:2)
你应该做的是创建一个新类,这样你就可以保持JComboBox和JTextField的数据相互关联。
class MyClass{
private String comboStr;
private String textStr;
public MyClass{
comboStr = "this goes in my combobox";
textStr = "this goes in my textfield";
}
public String toString(){
return comboStr;
}
public String getText(){
return textStr;
}
}
(你需要toString(),以便组合框中的每个元素显示正确的文本。)
然后在您的侦听器中,您可以使用以下命令设置JTextField的文本。
MyClass myObj = (MyClass)combo.getSelectedItem();
txt.setText(myObj.getText());
答案 1 :(得分:0)
为了让JComboBox
显示不同的文字,比如说Google
,当有一个有关于它的信息的对象时,你需要覆盖班级中的toString()
方法正在添加到JComboBox
。这是因为当JComboBox
设置自己时,它会为其中的每个对象使用toString()
方法来创建显示文本。