我有3个JComboBox。第一部分展示了一个孩子的学年。第二部分显示了孩子的班级,第三部分显示了该学年和该班的孩子。我希望当我选择第一个JComboBox的选项时,第二个JComboBox会出现一个或另一个选项(取决于第一个JComboBox的选择)。问题是,我想在第二个JComboBox中选择一个选项,在第三个中出现一个选项或另一个选项(取决于第二个JComboBox的选择)。我已经尝试了很多,但我不知道该怎么做。我也尝试过动作游戏,但它没有用。拜托,我很感激任何帮助。
答案 0 :(得分:0)
这是一个示例,显示如何根据第一个组合框中的选择填充第二个组合框:
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
public class ComboBoxTwo extends JPanel implements ActionListener
{
private JComboBox<String> mainComboBox;
private JComboBox<String> subComboBox;
private Hashtable<String, String[]> subItems = new Hashtable<String, String[]>();
public ComboBoxTwo()
{
String[] items = { "Select Item", "Color", "Shape", "Fruit" };
mainComboBox = new JComboBox<String>( items );
mainComboBox.addActionListener( this );
// prevent action events from being fired when the up/down arrow keys are used
mainComboBox.putClientProperty("JComboBox.isTableCellEditor", Boolean.TRUE);
add( mainComboBox );
// Create sub combo box with multiple models
subComboBox = new JComboBox<String>();
subComboBox.setPrototypeDisplayValue("XXXXXXXXXX"); // JDK1.4
add( subComboBox );
String[] subItems1 = { "Select Color", "Red", "Blue", "Green" };
subItems.put(items[1], subItems1);
String[] subItems2 = { "Select Shape", "Circle", "Square", "Triangle" };
subItems.put(items[2], subItems2);
String[] subItems3 = { "Select Fruit", "Apple", "Orange", "Banana" };
subItems.put(items[3], subItems3);
}
public void actionPerformed(ActionEvent e)
{
String item = (String)mainComboBox.getSelectedItem();
Object o = subItems.get( item );
if (o == null)
{
subComboBox.setModel( new DefaultComboBoxModel() );
}
else
{
subComboBox.setModel( new DefaultComboBoxModel( (String[])o ) );
}
}
private static void createAndShowUI()
{
JFrame frame = new JFrame("SSCCE");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add( new ComboBoxTwo() );
frame.setLocationByPlatform( true );
frame.pack();
frame.setVisible( true );
}
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
createAndShowUI();
}
});
}
}
答案 1 :(得分:0)
我要尝试解释一下我的代码。我收到另一个类的JSon对象,因为信息在数据库中。其他课程是ClasInf和StudentsInf。它是一个JSon对象所以我必须获取对象,然后将其更改为String,将其放在jcombobox上。所有JCombobox都属于同一类。如果你不明白的话请告诉我。我试图翻译整个答案
这是我的第一个JCombobox。
for(int c=0;c<arrayClassroom.size();c++){
JsonObject clas = arrayClassroom.getJsonObject(c);
comboBoxYear.addItem(clas.getString("name"));
}
这是第二个和第三个
ItemListener itemlistener= new ItemListener() {
public void itemStateChanged(ItemEvent eventCombo){
comboBoxYear.removeAllItems();
comboBoxYear.addItem("Class");
clase = new ClasInf();
String cursoPru = comboBoxYear.getSelectedItem().toString();
arrayClas = clase.getclase(cursoPru);
for(int c=0;c<arrayClas.size();c++){
JsonObject curso = arrayClas.getJsonObject(c);
comboBoxYear.addItem(curso.getString("name_class"));
}
comboBoxStudents.removeAllItems();
comboBoxStudents.addItem("Students");
students= new StudentsInf();
String clases = comboBoxClase.getSelectedItem().toString();
arrayStudent = student.getStudent(clases);
for(int j=0;j<arrayStudent.size();j++){
JsonObject clase = arrayStudent.getJsonObject(j);
comboBoxStudents.addItem(clase.getString("nombre"));
}
}
};
comboBoxYear.addItemListener(itemlistener);