我正在用Java创建一个简单的清单系统。我喜欢将数据传递到另一个JFrame中。我只能传递一个数据。我不怎么传递多个数据。我在下面尝试附加的内容。
这是如何创建模型
DefaultTableModel dtm;
dtm.addRow(new Object[]
{
txtproduct.getText(),
txtprice.getText(),
});
答案 0 :(得分:2)
您不能有两个具有相同参数的构造器
尝试执行此操作:
public print(String user, String age)
{
initComponents();
this.lname = user;
this.lage = age;
name.setText(lname);
age.setText(lage);
}
然后传递“”,在此处您不需要某些参数。 创建JFrame
new print(name, "").setVisible(true);
或
new print("", age).setVisible(true);