Olá, pessoal!
Estou com um pequeno problema com relação a um programa que estou fazendo em Java.
Estou fazendo a interface gráfica com JFrame, mas por algum motivo a minha tela não é exibida
quando executo o programa.
Gostaria da ajuda de alguém, pois não sei como resolver.
O problema está relacionado as duas classes abaixo:
CLASSE 01:
package Model;
import Telas.TelaInicio;
import javax.swing.SwingUtilities;public class Inicio {
public static void main(String[] args){ SwingUtilities.invokeLater(() -> { TelaInicio telaInicio = new TelaInicio(); telaInicio.pack(); telaInicio.setVisible(true); }); }
}
CLASSE 2 (JFrame)
package Telas;
public class TelaInicio extends javax.swing.JFrame {
/** * Creates new form TelaInicio */ public TelaInicio() { initComponents(); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code"> private void initComponents() { jLabel1 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); getContentPane().setLayout(null); jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagens/Tela 01 - Início (CUP SIMULATOR) (1).png"))); // NOI18N jLabel1.setText("jLabel1"); getContentPane().add(jLabel1); jLabel1.setBounds(0, 0, 400, 300); pack(); }// </editor-fold> /** * @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(TelaInicio.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(TelaInicio.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(TelaInicio.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(TelaInicio.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(() -> { new TelaInicio().setVisible(true); }); } // Variables declaration - do not modify private javax.swing.JLabel jLabel1; // End of variables declaration
}
Quando eu executo o programa a tela não é exibida. Não sei o que está ocorrendo exatamente, pois o método setVisible(true) está lá.