Fala pessoal! Estou com um problema e não faço a minima ideia de resolver…
Quando eu testo o projeto no Netbeans ele executa sem nenhum erro tudo perfeito! Mesma coisa quando gero o .jar e executo no mesmo computador que eu contrui o projeto, mas quando eu tento executar o mesmo .jar em outros computadores ele da alguns erro na janela de login eu insiro usuario e senha clico em entrar e nada acontece, já tentei fazer um botão que pula a validação e ja abre a tela principal e novamente nada acontece.
Acredito que o porblema não seja os os códigos mas mesmo assim Segue os códigos:
Tela Login:
package visao;
import modeloBeans.BeansLogin;
import modeloConnection.ConexaoBD;
import modeloDao.DaoLogin;
public class TelaLogin extends javax.swing.JFrame {
ConexaoBD con = new ConexaoBD();
BeansLogin beansl = new BeansLogin();
DaoLogin daol = new DaoLogin();
public TelaLogin() {
initComponents();
}
@SuppressWarnings("unchecked")
}// </editor-fold>
//Botão Entrar
private void btnEntrarActionPerformed(java.awt.event.ActionEvent evt) {
beansl.setSenha(txtSenha.getText());
beansl.setUsuario(txtUsuario.getText());
daol.Logar(beansl);
}
//Botão Cancelar
private void btnCancelarActionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
}
//Botão Pular
private void btnPularActionPerformed(java.awt.event.ActionEvent evt) {
TelaPrincipal tela = new TelaPrincipal();
tela.setVisible(true);
dispose();
}
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(TelaLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(TelaLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(TelaLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(TelaLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new TelaLogin().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton btnCancelar;
private javax.swing.JButton btnEntrar;
private javax.swing.JButton btnPular;
private javax.swing.JLabel jLabel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JLabel lblSenha;
private javax.swing.JLabel lblUsuario;
private javax.swing.JPasswordField txtSenha;
private javax.swing.JTextField txtUsuario;
// End of variables declaration
}
DaoLogin:
package modeloDao;
import java.sql.SQLException;
import javax.swing.JOptionPane;
import modeloBeans.BeansLogin;
import modeloConnection.ConexaoBD;
import visao.TelaLogin;
import visao.TelaPrincipal;
public class DaoLogin {
ConexaoBD con = new ConexaoBD();
BeansLogin beansl = new BeansLogin();
public void Logar(BeansLogin beansl) {
try {
con.conectar();
con.executaSql("select * from usuario where usuario ='"+beansl.getUsuario()+"'");
con.rs.first();
if(con.rs.getString("senha").equals(beansl.getSenha())){
JOptionPane.showMessageDialog(null,"Conectado com Sucesso");
TelaPrincipal tela = new TelaPrincipal();
TelaLogin tela2 = new TelaLogin();
tela.setVisible(true);
tela2.dispose();
}else{
JOptionPane.showMessageDialog(null,"Senha ou Usuario invalidos");
}
con.desconetar();
} catch (SQLException ex) {
JOptionPane.showMessageDialog(null,"Erro ao encontrar Usuario\n Erro:"+ex);
}
}
}
Desde já agraçedo