如何从 JFrame 1 获取数据到另一个 JFrame?

How to get data from JFrame 1 to another JFrame?

阅读了人们发布和回答的大量问题后,我仍然不明白 Java 中数据传递的工作原理。我这里有一个简单的代码,要求用户输入他们的年龄、身高、体重和一个将打开第二帧的按钮。

第一帧

public Collectdata()
{
    JPanel text = new JPanel();
    text.add(jage);
    text.add(age);
    text.add(jheight);
    text.add(height);
    text.add(jweight);
    text.add(weight);
    text.setLayout(new GridLayout(3,2));

    JPanel jbutt = new JPanel();
    jbutt.add(next);

    setLayout(new BorderLayout());
    add(text,BorderLayout.CENTER);
    add(jbutt,BorderLayout.SOUTH);

    next.addActionListener(this);
}

public static void main(String[] args)
{
    Collectdata GUI = new Collectdata();
    GUI.setTitle("DataCollection");     //Set title
    GUI.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //close program
    GUI.setSize(250,150);
    GUI.setVisible(true);
}

public void actionPerformed(ActionEvent a)
{
    if(a.getSource() == next)
    {
        Calculate secondwind = new Calculate(this);
        secondwind.setTitle("Calculate");       //Set title
        secondwind.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  //close program
        secondwind.setSize(350,150);
        secondwind.setVisible(true);
        this.setVisible(false); 
    }
}

}

这是点击按钮后显示的第二帧。

第 2 帧

public Calculate(Collectdata collectdata)
{
    this.collectdata = collectdata;

    JPanel text = new JPanel();
    text.add(jage);
    text.add(age);
    text.add(jheight);
    text.add(height);
    text.add(jweight);
    text.add(weight);
    text.setLayout(new GridLayout(3,2));

    age.setEditable(false);
    height.setEditable(false);
    weight.setEditable(false);

    setLayout(new BorderLayout());
    add(text,BorderLayout.CENTER);
}

我希望能够从 JFrame 中获取键控数据,以便能够传递到第二个 JFrame 并使用该数据进行一些计算。

我该怎么做?

谢谢。

通常,当 requesting/prompting 来自用户的信息时,您会使用某种对话框,这是一个 short-lived,单一用途 window,其工作应该是从用户那里收集少量信息、提出问题或提供某种信息通知。

您需要保持责任的隔离并尽可能地尝试 de-couple 您的代码,例如,您的 Calculate class 不应该关心信息是如何生成的并且您的 collection class 不应该关心您将如何处理这些信息。

为此,首先创建自定义 class,从 JPanel 扩展,其中包含从用户收集数据所需的所有字段...

public class UserInfoEditorPane extends JPanel {
    private JSpinner jage;
    private JSpinner jheight;
    private JSpinner jweight;

    public UserInfoEditorPane() {  
        // Set the UI as you want...
    }

    public Collectdata getUserInfo() {
        // Create a new instance of Collectdata
        // and populate it with the values from
        // the fields...
        Collectdata data = ...;
        //...
        return data;
    }
}

(nb 我正在使用 Collectdata 作为 POJO,而不是 UI class)

现在,使用 JOptionPane 之类的东西向用户显示面板...

UserInfoEditorPane userInfoPane = new UserInfoEditorPane();
switch (JOptionPane.showMessageDialog(null, userInfoPane, "User Info", JOptionPane.PLAIN_MESSAGE)) {
    case JOptionPane.OK_OPTION:
        Calculate secondwind = new Calculate(userInfoPane.getUserInfo());
        secondwind.setTitle("Calculate");       //Set title
        secondwind.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  //close program
        secondwind.pack();
        secondwind.setLocationRelativeTo(null);
        secondwind.setVisible(true);
        break;
}

有关详细信息,请参阅 How to Make Dialogs