こんにちは私は2つの列、すなわち機器とメソッドを持つテーブルを使用しています。ボタンをクリックすると、各セルにエディターとしてコンボボックスを含む行が追加されます。また、これらのコンボボックスにはアクションリスナーがあります。機器を選択するときと同様に、メソッドコンボボックスリストを変更する必要があります。使用しているコンボボックスは2つだけで、行を追加するたびにインスタンス化しています。私の問題は、新しい行を追加するたびに、既存の行のコンボに最新の値が再ロードされることです。つまり、別の方法でインスタンス化したとしても、コンボボックスはユニークです。独自の値を持つ必要があるコンボボックスを動的に作成する方法は何ですか。参考までに私のコードを以下に投稿してください。
addItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
comboInstrument = new CeNComboBox();
comboMethod = new CeNComboBox();
TableColumn instrumentColumn = table.getColumn("Instrument Used");
TableColumn methodColumn = table.getColumn("Method Title");
comboInstrument.removeAllItems();
listInstruments = analyticalUtil.getInstruments(listAnalysisSummaryPrefs);
iterateInstruments = listInstruments.iterator();
while(iterateInstruments.hasNext()){
comboInstrument.addItem(iterateInstruments.next());
}
dtm.addRow(new Object[]{" "," "});
comboInstrument.setEditable(true);
instrumentColumn.setCellEditor(new MyComboBoxEditor(comboInstrument));
instrumentColumn.setCellRenderer(new MyComboBoxRenderer());
comboMethod.setEditable(true);
methodColumn.setCellEditor(new MyComboBoxEditor(comboMethod));
methodColumn.setCellRenderer(new MyComboBoxRenderer());
comboInstrument.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent argEvent){
comboInstrumentActionPerformed();
}
});
comboMethod.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent argEvent){
comboMethodActionPerformed();
}
});
}
});
MyComboBoxEditor.java
public class MyComboBoxEditor extends DefaultCellEditor {
public MyComboBoxEditor(JComboBox combobox) {
super(combobox);
}
}
私はSwingを初めて使用します。私を助けてください。
ハードコードされた値を持つサンプルコードを追加します。これを実行すると、私の問題を理解できます。この方法でテストします。1.最初の列、最初の行から値を選択し、別の列から値を選択します。2. 2行目でも同じことを行い、最初の行の2列目を確認します。2行目の選択に基づいて、すべての値が再ロードされます。これが私が直面している問題です。次のリンクからコピーおよび編集された以下のコード JComboBoxアクションリスナー
private static final long serialVersionUID = 1L;
private JComboBox mainComboBox;
private JComboBox subComboBox;
private Hashtable<Object, Object> subItems = new Hashtable<Object, Object>();
public Testing() {
String[] items = {"","Select Item", "Color", "Shape", "Fruit", "Size"};
mainComboBox = new JComboBox(items);
mainComboBox.addActionListener(this);
mainComboBox.addItemListener(this);
mainComboBox.setEditable(true);
//prevent action events from being fired when the up/down arrow keys are used
//mainComboBox.putClientProperty("JComboBox.isTableCellEditor", Boolean.TRUE);
// getContentPane().add(mainComboBox, BorderLayout.WEST);
subComboBox = new JComboBox();// Create sub combo box with multiple models
subComboBox.setPrototypeDisplayValue("XXXXXXXXXX"); // JDK1.4
subComboBox.addItemListener(this);
// getContentPane().add(subComboBox, BorderLayout.CENTER);
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);
String[] subItems4 = {"Select Size", "Big", "Middle", "Small"};
subItems.put(items[4], subItems4);
DefaultTableModel model = new DefaultTableModel(new String[]{"Instrument Used","Method Title"},0);
JTable table = new JTable(model);
table.getColumn("Instrument Used").setCellEditor(new MyComboBoxEditor(mainComboBox));
table.getColumn("Instrument Used").setCellRenderer(new MyComboBoxRenderer());
table.getColumn("Method Title").setCellEditor(new MyComboBoxEditor(subComboBox));
table.getColumn("Method Title").setCellRenderer(new MyComboBoxRenderer());
model.addRow(new String[]{""});
model.addRow(new String[]{""});
getContentPane().add(table, BorderLayout.CENTER);
}
public void actionPerformed(ActionEvent e) {
String item = (String) mainComboBox.getSelectedItem();
JOptionPane.showMessageDialog(null, "Action Performed "+item);
Object o = subItems.get(item);
if (o == null) {
subComboBox.setModel(new DefaultComboBoxModel());
} else {
subComboBox.setModel(new DefaultComboBoxModel((String[]) o));
}
}
public void itemStateChanged(ItemEvent e) {
if (e.getStateChange() == ItemEvent.SELECTED) {
if (e.getSource() == mainComboBox) {
if (mainComboBox.getSelectedIndex() != 0) {
FirstDialog firstDialog = new FirstDialog(Testing.this,
mainComboBox.getSelectedItem().toString(), "Please wait, Searching for ..... ");
}
}
}
}
private class FirstDialog extends JDialog {
private static final long serialVersionUID = 1L;
FirstDialog(final Frame parent, String winTitle, String msgString) {
super(parent, winTitle);
//setModalityType(Dialog.ModalityType.APPLICATION_MODAL);
JLabel myLabel = new JLabel(msgString);
JButton bNext = new JButton("Stop Processes");
add(myLabel, BorderLayout.CENTER);
add(bNext, BorderLayout.SOUTH);
bNext.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
setVisible(false);
}
});
javax.swing.Timer t = new javax.swing.Timer(1000, new ActionListener() {
public void actionPerformed(ActionEvent e) {
setVisible(false);
}
});
t.setRepeats(false);
t.start();
setLocationRelativeTo(parent);
setSize(new Dimension(400, 100));
setVisible(true);
}
}
public static void main(String[] args) {
JFrame frame = new Testing();
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}