如何修复“线程“ AWT-EventQueue-0”中的异常java.lang.NullPointerException”?

时间:2019-06-23 00:47:50

标签: java oop

我正在使用图形界面处理netbeans,执行代码并打开主窗口,但是当我尝试打开另一个名为“ frmEncuestados”的窗口时,它没有打开,并且出现了这些错误。

公共类frmEncuestados扩展了javax.swing.JInternalFrame {

String identificacion = "";
String nombres = "";
String apellidos = "";
String genero = "";
String ingresos = "";
String municipio = "";

private Datos misDatos;
private DefaultTableModel miTabla;
ArrayList<Encuesta> encuestados = misDatos.getEncuestados(); //This is the 
//line 27

public void setDatos(Datos misDatos) {
    /*A través de este método se podrá recibir el contenido de un objeto
      misDatos enviado desde otra clase  */
    this.misDatos = misDatos;
}

public frmEncuestados() {
    initComponents();

    //Metodo para seleccionar cualquier elemento de la tabla con el mouse (mouseListener)
    jTableUsuarios.addMouseListener(new MouseAdapter() {
        DefaultTableModel model = new DefaultTableModel();

        public void mouseClicked(MouseEvent e) {
            int i = jTableUsuarios.getSelectedRow();
            identificacion = (jTableUsuarios.getValueAt(i, 0).toString());
            nombres = (jTableUsuarios.getValueAt(i, 1).toString());
            apellidos = (jTableUsuarios.getValueAt(i, 2).toString());
            genero = (jTableUsuarios.getValueAt(i, 3).toString());
            ingresos = (jTableUsuarios.getValueAt(i, 4).toString());
            municipio = (jTableUsuarios.getValueAt(i, 5).toString());
        }
    });
}

Formularios软件包;

公共类frmPrincipal扩展了javax.swing.JFrame {

public frmPrincipal() {
    initComponents();
}

@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">                          
private void initComponents() {

    dpnEscritorio = new javax.swing.JDesktopPane();
    jMenuBar1 = new javax.swing.JMenuBar();
    mnuArchivo = new javax.swing.JMenu();
    mnuArchivoEncuestados = new javax.swing.JMenuItem();
    mnuSalir = new javax.swing.JMenuItem();
    mnuAyuda = new javax.swing.JMenu();
    mnuAyudaAcercaDe = new javax.swing.JMenuItem();

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

    javax.swing.GroupLayout dpnEscritorioLayout = new javax.swing.GroupLayout(dpnEscritorio);
    dpnEscritorio.setLayout(dpnEscritorioLayout);
    dpnEscritorioLayout.setHorizontalGroup(
        dpnEscritorioLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGap(0, 400, Short.MAX_VALUE)
    );
    dpnEscritorioLayout.setVerticalGroup(
        dpnEscritorioLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGap(0, 277, Short.MAX_VALUE)
    );

    mnuArchivo.setText("Archivo");

    mnuArchivoEncuestados.setText("Encuestados");
    mnuArchivoEncuestados.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            mnuArchivoEncuestadosActionPerformed(evt);
        }
    });
    mnuArchivo.add(mnuArchivoEncuestados);

    mnuSalir.setText("Salir");
    mnuSalir.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            mnuSalirActionPerformed(evt);
        }
    });
    mnuArchivo.add(mnuSalir);

    jMenuBar1.add(mnuArchivo);

    mnuAyuda.setText("Ayuda");

    mnuAyudaAcercaDe.setText("Acerca de");
    mnuAyuda.add(mnuAyudaAcercaDe);

    jMenuBar1.add(mnuAyuda);

    setJMenuBar(jMenuBar1);

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addComponent(dpnEscritorio)
    );
    layout.setVerticalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addComponent(dpnEscritorio)
    );

    pack();
}// </editor-fold>                        

private void mnuArchivoEncuestadosActionPerformed(java.awt.event.ActionEvent evt) {                                                      
    frmEncuestados miFrmEncuestados = new frmEncuestados();
    dpnEscritorio.add(miFrmEncuestados);
    miFrmEncuestados.show();
}                                                     

private void mnuSalirActionPerformed(java.awt.event.ActionEvent evt) {                                         
    System.exit(0);
}                                        

/**
 * @param args the command line arguments
 */
public static void main(String args[]) {
    /* Set the Nimbus look and feel */
    //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
    /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
     * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
     */
    try {
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }
    } catch (ClassNotFoundException ex) {
        java.util.logging.Logger.getLogger(frmPrincipal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
        java.util.logging.Logger.getLogger(frmPrincipal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (IllegalAccessException ex) {
        java.util.logging.Logger.getLogger(frmPrincipal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (javax.swing.UnsupportedLookAndFeelException ex) {
        java.util.logging.Logger.getLogger(frmPrincipal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    }
    //</editor-fold>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(new Runnable() {
        public void run() {
            new frmPrincipal().setVisible(true);
        }
    });
}    

错误: 线程“ AWT-EventQueue-0”中的异常java.lang.NullPointerException     在Formularios.frmEncuestados。(frmEncuestados.java:27)     在Formularios.frmPrincipal.mnuArchivoEncuestadosActionPerformed(frmPrincipal.java:95)     在Formularios.frmPrincipal $ 1.actionPerformed(frmPrincipal.java:56)

0 个答案:

没有答案