從JTextField中獲取值&將其重寫到現有變量中。從JTextField獲取值並將其重寫到現有變量中
例如:
public class variables{
String var = "hi";
public static void main(String[]args){
//do sth
}
}
然後接口讀取來自主類的值&的值從一個JTextField改變
private void changeVariableActionPerformed(java.awt.event.ActionEvent evt) {
variables.var = txtField.getText();
//then into textfield we write bye & variables.var takes the value of bye
//variables.var = "bye"
}
我想改變變種的與動作的值來執行
添加有關更新的通知的一些信息。你提到獲得的價值,但是什麼行動導致提示 –