我有两个jdialog首先购买第二个find_Supplier 购买有两个文本字段,find_supplier有一个jtable 现在我想要的是从jtable的特定单元格中获取值,并在点击JButton时将它们放入第一个对话框的文本字段中。 到目前为止,我能够从jtable的单元格中访问值,但我无法将它们放入文本字段
以下是打开find_supplier对话框的代码
find_supplier fs=new find_supplier(null,true);
fs.setVisible(true);
以下是将值放在文本字段中的代码
purchase_item pi=new purchase_item(null, true);
pi.txtSupAddress.setText(address);
pi.txtSupName.setText(name);
this.dispose();
//pi.setVisible(true) This opens new JDialog so no need of it
注意:两个对话框都是模态的