icone no jlabel
tenho tido um erro que nao tenho conseguido resolver
public TelaLogin() {
initComponents();
conexao =ModuloConexao.conector();
if (conexao != null){
lblStatus.setIcon(new javax.swing.ImageIcon(getClass().getResource("/br/com/infox/incones/bda.png"))); }
else lblStatus.setIcon(new javax.swing.ImageIcon(getClass().getResource("/br/com/infox/incones/bdx.png")));
}
mando o netbeans roda a aplicacao e me aparece esse erro abaixo
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at javax.swing.ImageIcon.<init>(ImageIcon.java:217)
at br.com.infox.telas.TelaLogin.<init>(TelaLogin.java:32)
at br.com.infox.telas.TelaLogin$1.run(TelaLogin.java:149)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:756)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:726)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
CONSTRUÍDO COM SUCESSO (tempo total: 2 segundos)
public TelaLogin() {
initComponents();
conexao =ModuloConexao.conector();
if (conexao != null){
lblStatus.setIcon(new javax.swing.ImageIcon(getClass().getResource("/br/com/infox/incones/bda.png"))); }
else lblStatus.setIcon(new javax.swing.ImageIcon(getClass().getResource("/br/com/infox/incones/bdx.png")));
}
mando o netbeans roda a aplicacao e me aparece esse erro abaixo
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at javax.swing.ImageIcon.<init>(ImageIcon.java:217)
at br.com.infox.telas.TelaLogin.<init>(TelaLogin.java:32)
at br.com.infox.telas.TelaLogin$1.run(TelaLogin.java:149)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:756)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:726)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
CONSTRUÍDO COM SUCESSO (tempo total: 2 segundos)
Marcos Rodrigues
Curtidas 0
Respostas
Jones Granatyr
17/10/2016
Opa! Provavelmente não está achando a imagem. Tente colocar "src" antes do caminho, dessa forma: src/br/com/infox/incones/bda.png
GOSTEI 0