gpt4 book ai didi

java - 由于 ActionListener,JComboBox 未刷新/更新

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

所以这是我的问题:我当前正在使用两个 JComboBox。第二个 JComboBox 应该根据第一个 JComboBox 中的选择进行更新。在这种情况下,第一个 JComboBox 包含学习专业的缩写:(ART、CSC、MTH、PHY 等),第二个 JComboBox 应该更新为该特定专业存在的所有可能的类(class)编号。因此,我拥有的文件阅读器能够读取所有信息并相应地填写两个列表。我遇到的第一个问题是当从第一个 JComboBox 中选择特定专业时进行第二个 JComboBox 更新。我通过向第一个 JComboBox 添加一个 actionListener 解决了这个问题。但现在我有另一个问题..:

问题:当我单击第一个 JComboBox 时,会出现一个应有的所有专业的列表,但当我单击其中一个专业时,它不会改变。第二个 JComboBox 将适当更改,就像我选择了正确的 JComboBox 一样,但第一个 JComboBox 不会更改。它只是停留在“ART”(按字母顺序排列在列表中的第一位)。

我从第一个 JComboBox 中选择其他选项之一: http://imageshack.us/photo/my-images/845/problem2t.jpg/

它适本地更改了第二个 JComboBox,但第一个 JComboBox 没有更改。 http://imageshack.us/photo/my-images/189/problem1n.jpg/

这是我的代码:首先,我有一个用于设置图形的构造函数。然后我有我的 Action 监听器(JComboBox 是最后一个 elseif 语句),然后我有设置 JComboBox 的方法。

public Student(){
//Window Attributes
setSize(WINDOW_WIDTH,WINDOW_HEIGHT);
setTitle("Academic Major Selection");

//Center the Program Window
Dimension dim = new Dimension(toolkit.getScreenSize());
setLocation((int)dim.getWidth()/2 - WINDOW_WIDTH/2,(int)dim.getHeight()/2 - WINDOW_HEIGHT/2);

//do not allow resizing of window
setResizable(false);

//create arrays for classes
//input file reader here
String[] subjectArray = {"CSC","MTH","ENG","THE","PHY"};
String[] numberArray = {"100","200","300","400","500"};


//create boxes for dropdown
subjectBox = new JComboBox(subjectArray);
subjectBox.addActionListener(this);
numberBox = new JComboBox(numberArray);

//creates a panel for our dropdown panels
selectPanel = new JPanel();
selectPanel.setLayout(new GridLayout(1,2,25,0));
selectPanel.add(subjectBox);
selectPanel.add(numberBox);
.
.
.//trimmed out some excess stuff
.
try {
setDropDownBoxes();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

//show the window
setVisible(true);
}

@Override
public void actionPerformed(ActionEvent e) {

//What button is pressed?
.
.
.//Trimmed out some extra stuff
.
//This will equal true when something is selected from the first JComboBox
}else if(((String)subjectBox.getSelectedItem()).length() == 3){
System.out.println("New Subject Selected");
try {
setDropDownBoxes();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}

}

void setDropDownBoxes() throws IOException{
int j=0;

String[][] someArrayTwoD = studentWriter.fetchClassLists();

String[] subjectArray = new String[someArrayTwoD.length];
while(j<someArrayTwoD.length){
subjectArray[j] = someArrayTwoD[j][0];
j++;
}

String[] numberArray = new String[someArrayTwoD[subjectBox.getSelectedIndex()].length-1];
for(int i=0; i<numberArray.length; i++){
numberArray[i] = someArrayTwoD[subjectBox.getSelectedIndex()][i+1];
}

selectPanel.remove(subjectBox);
selectPanel.remove(numberBox);

subjectBox = new JComboBox(subjectArray);
numberBox = new JComboBox(numberArray);

selectPanel.add(subjectBox);
selectPanel.add(numberBox);
selectPanel.validate();
subjectBox.addActionListener(this);
}

最佳答案

您的代码存在一个问题,即您使用 == 来检查字符串是否相等,而不是使用 equals(...) >equalsIgnoreCase(...) 方法:

if(e.getActionCommand() == addButton.getText()){
//....
}

了解 == 检查两个对象是否相同,这不是您感兴趣的。另一方面,方法检查两个字符串是否在同一个字符串中具有相同的字符顺序,这就是这里最重要的。所以而不是

if (fu == "bar") {
// do something
}

做,

if (fu.equals("bar")) {
// do something
}

或者,

if (fu.equalsIgnoreCase("bar")) {
// do something
}

或者更好的是,摆脱你的“开关板”ActionListener,不要让你的 GUI 类实现监听器接口(interface)(通常是一个坏主意),而是给你的 JButtons 匿名内部类监听器。

关于java - 由于 ActionListener,JComboBox 未刷新/更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16159233/

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