【问题标题】:How to access to the content of JTextField inside of Jpanel inside of JFrame?如何访问JFrame里面的Jpanel里面的JTextField的内容?
【发布时间】:2021-03-12 19:04:05
【问题描述】:

我正在尝试从另一个文件中的另一个 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”,阅读同意将其发送到另一个变量,但我不知道该怎么做。

我不确定您是否掌握了提供答案所需的所有信息。如果是这样,我会回答你的任何问题。

【问题讨论】:

    标签: java swing jframe jpanel jtextfield


    【解决方案1】:

    你需要在构造函数之前声明 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();
    

    您可能还需要为 cuadroTexto1 添加 getter,具体取决于 cuadroTexto1 java 文件的位置

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2012-03-24
      • 2011-06-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-07-28
      • 1970-01-01
      相关资源
      最近更新 更多