gpt4 book ai didi

java - 从 JComboBox 返回对象

转载 作者:行者123 更新时间:2023-12-02 12:30:07 26 4
gpt4 key购买 nike

我想这是一个真正的新手问题,但我在这里、我的 java 书或其他地方找不到任何答案。

我正在尝试使用 Swing 构建一个 GUI,我可以在其中注册不同种类的 wine。我希望我的 Wine 类(有一个 Wine 父类(super class)和三个子类:红色、白色和玫瑰色)由一些字符串和整数(名称、年份等)以及一堆对象组成,例如国家、地区、房子等等。

我从 JPanel 创建 wine 对象,现在由一个用于名称的 JTextArea 和一个用于国家/地区的 JComboBox 组成,我使用 for 循环填充组合框从存储在数组列表中的对象国家/地区收集名称变量。

这是我的玫瑰酒表格,其他的看起来都差不多。

class RoseWineForm extends JPanel {

private JTextField wineName = new JTextField(15);
private JComboBox countryBox = new JComboBox();

public RoseWineForm() {
JPanel line1 = new JPanel();
setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
line1.add(new JLabel("Namn: "));
line1.add(wineName);
add(line1);

JPanel line2 = new JPanel();
line2.add(new JLabel("Ursprungsland"));
line2.add(countryBox);
for(Country c : listOfCountries) {
countryBox.addItem(c.getCountryName());
}
add(line2);
}

public String getName() {
return wineName.getText();
}

public Country getCountry() {
return ;
}}

这是将用户发送到表单的 ActionListener

class NewWineListener implements ActionListener {
public void actionPerformed (ActionEvent a) {
try {
JComboBox wineColor = (JComboBox) a.getSource();
if (wineColor.getSelectedIndex() == 0) {
RedWineForm red = new RedWineForm();
int answer = JOptionPane.showConfirmDialog(TestVin.this, red, "Nytt rött vin",
JOptionPane.OK_CANCEL_OPTION);
} else if (wineColor.getSelectedIndex() == 1) {
WhiteWineForm white = new WhiteWineForm();
int answer = JOptionPane.showConfirmDialog(TestVin.this, white, "Nytt vitt vin",
JOptionPane.OK_CANCEL_OPTION);
} else {
RoseWineForm rose = new RoseWineForm();
int answer = JOptionPane.showConfirmDialog(TestVin.this, rose, "Nytt rosé vin",
JOptionPane.OK_CANCEL_OPTION);
}
} catch (NumberFormatException e) {
JOptionPane.showMessageDialog(TestVin.this, "Fel inmatning!");
}
}

这是我的国家/地区类(class):

public class Country {

private String countryName;

public Country(String countryName) {
this.countryName = countryName;
}

public String getCountryName() {
return countryName;
}

public void setCountryName(String newCountryName) {
if ( newCountryName == null || newCountryName.trim().isEmpty()) {
System.out.println("You have to set a name.");
} else {
countryName = newCountryName;
}}
public String toString() {
return countryName;

}
}

我的问题是:当我在组合框中选择国家/地区名称时,如何返回对象,而不仅仅是名为 countryNameString ,以便我可以创建我的带有变量 String nameCountry Country?

的 wine 对象

希望您能理解其中有一些瑞典语。

最佳答案

您需要添加国家/地区对象本身,而不是像现在这样仅添加国家/地区名称,这样就可以了:

public RoseWineForm() {
JPanel line1 = new JPanel();
setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
line1.add(new JLabel("Namn: "));
line1.add(wineName);
add(line1);

JPanel line2 = new JPanel();
line2.add(new JLabel("Ursprungsland"));
line2.add(countryBox);
for(Country c : listOfCountries) {
//This does the trick
countryBox.addItem(c);
}
add(line2);
}

然后在您的“Country”类中,您将需要重写“toString”方法,我相信您做得很好,格式化您的代码以使其更具可读性是一个好主意。

public class Country {

private String countryName;

//Constructor, getters and setters

@Override
public String toString() {
return this.countryName;
}

}

每当您想要获取您选择的国家/地区对象时,您只需:

Country selectedCountry = (Country) countryBox.getSelectedItem();

并获取您希望实现的功能所需的 ID、名称或任何其他属性。

希望有帮助。

关于java - 从 JComboBox 返回对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45313023/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com