如何访问jframe内部的jpanel内部的jtextfield的内容?

zbdgwd5y  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(371)

我试图从另一个文件中的另一个java类读取jframe中jpanel中jtextfield的内容。
在一个.java文件中,我有以下代码:

public class Ventana extends JFrame implements ActionListener {

    public Ventana() {
        setSize(500, 500);
        setTitle("Ventana");
        setLocationRelativeTo(null);
        setVisible(true);
        setResizable(false);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        panel();
        grafica();
    }

    public void actionPerformed(ActionEvent e) {

    }

    public void panel() {
        JPanel panel = new JPanel();

        panel.setBounds(0, 0, 500, 50);
        panel.setVisible(true);
        panel.setBackground(Color.DARK_GRAY);

        JLabel etiqueta1 = new JLabel("A: ");
        JLabel etiqueta2 = new JLabel("B: ");
        JLabel etiqueta3 = new JLabel("C: ");

        JTextField cuadroTexto1, cuadroTexto2, cuadroTexto3;
        cuadroTexto1 = new JTextField("    ");
        cuadroTexto2 = new JTextField("    ");
        cuadroTexto3 = new JTextField("    ");
        JButton boton = new JButton("Calcular");

        panel.add(etiqueta1);
        panel.add(cuadroTexto1);

        panel.add(etiqueta2);
        panel.add(cuadroTexto2);

        panel.add(etiqueta3);
        panel.add(cuadroTexto3);

        panel.add(boton);

        this.getContentPane().add(panel, BorderLayout.NORTH);
        this.validate();
    }
// more code under...

在另一个.java文件中,我正在尝试:

public class Controlador implements ActionListener{

    private Ventana vista;
    private Datos modelo;

    public Controlador( Ventana vista , Datos modelo){
        this.vista = vista;
        this.modelo = modelo;

    }

     //Inicia los valores del jFrame Ventana con los datos del MODELO "Datos".
    public void iniciar_vista(){
        vista.setTitle( "Demo" );
    }

    public void actionPerformed(ActionEvent e) {
        modelo.setA( Integer.valueOf( vista.cuadroTexto1.getText() ) );
    }
}

所以我要做的是在这段代码的最后一行访问“cuadrotexto1”,读取同意将它发送到另一个变量,但我不知道如何做。
我不知道你是否有所有的信息,你需要提供一个答案。如果是这样的话,我会回答你的任何问题。

z6psavjg

z6psavjg1#

您需要在构造函数之前声明cuadrotexto1

public class Ventana extends JFrame implements ActionListener {
JTextField cuadroTexto1; //declaration 
public Ventana() {
    setSize(500, 500);
    setTitle("Ventana");
    setLocationRelativeTo(null);
    setVisible(true);
    setResizable(false);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    panel();
    grafica();

根据cuadrotexto1java文件的位置,您可能还需要为cuadrotexto1添加getter

相关问题