我是新來的java。我創建項目,我有一個textField和一個按鈕。我做按鈕的功能,在那裏我開始我的其他功能,沒關係。但是,我需要從文本框取數的值作爲參數爲我的功能...如何從其他文本字段的文本字段中獲取int值
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 ;
}
});
幫我請,謝謝你提前
您是否想要設置總金額爲tf4?只是做tf4.setText(Integer.toString(totalamount)); – Freak
tf4.getText(Integer.toString(totalamount)); – StanislavL
你想做什麼... – Parth