How to pass a variable value from one JFrame to Another JFrame in Netbeans

家住魔仙堡 提交于 2019-11-29 11:00:37

Instead of Using JFrames for passing values between different forms you can use CardLayout which will persist your data which you have entered in the previous form. All you have to do is Create a JFrameForm and add panels to it.

Vinay

You can use getter and setter methods...

Set the username in a setter. And using object of login.java use it in account.java through getter...

public class login {
    private String username;
    private String password;

    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = this.usernameTextField.getText();
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = this.passwordTextField.getText();
    }
}

Using objects of login.java access getPassword(), getUsername() in account.java. you need to pass object of login.java to account.java first...

Since you have asked how to pass a variable value from one JFrame to Another JFrame (using swing). So for this put one textbox(tx) and a button(jButton3) in login.java and one label(lx) in account.java where we will print the value of the textbox from login.java .

Type this in login.java :-

 private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                         
      String msg= tx.getText();
      new NewJFrame2(msg).setVisible(true);
    } 

Then overload constructor in account.java :-

public NewJFrame2(String abc ){
        initComponents();
        lx.setText(abc);
    }

Well you have very nice way to do it.

Define new Static Final Objects of that class. and Save that value into the Object.

and in other Class u can easily use that objects and as well as that values. By using

CLASSNAME.OBJECT VALUE.

use that.

The 100% working solution. Suppose u r calling welcome.java

Account ac= new Account(new JFrame(), true);

After this line call a method of welcome.java which u have to create like:

wc.setUser(username);

For account.java

create a method:void setUser(String username) {
        user1 = user; 
        cname.setText(user1);
    }

User1 is global variable and available for all which u have to define lke:

String user1;

after it is assigning the username value to user1. here cname is a label which name is cname; so, we are seeting the text of cname to the user.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!