我正在为我的程序Photo of program使用JFrame。当您在文本字段中输入数量的值并从Jlist中选择另一个项目时,该值将保留并且不会清空文本字段。所以当我要从列表中选择另一个项目时,我想要发生的是清空文本字段。
以下是该部分的代码:
if (selected == "SBCA Jacket"){
photo.setIcon(new javax.swing.ImageIcon(getClass().getResource("/jacket.jpg")));
double p = 700;
String price = Double.toString(p);
priceField.setText(price);
int s = 500;
String stock = Integer.toString(s);
stockField.setText(stock);
int qty = Integer.parseInt(qtyField.getText());
int rstock = s - qty;
rstockField.setText(Integer.toString(rstock));
double total = p * qty;
totalField.setText(Double.toString(total));
}else if (selected == "SBCA T-shirt"){
...