我是java新手。我创建了一个项目,其中有一个 textField 和一个按钮。我为按钮制作功能,在那里我开始我的其他功能,没关系。但我需要从 textField 中获取数值作为我的函数的参数......
b1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
int price;
int quantity = Integer.parseInt(tf2.getText());
int totalamount = price*quantity;
//need to insert this total amout into textfield tf4 //
tf4.getText(totalamount); //showing error ;
}
});
请帮帮我,提前谢谢你