Login java

Boa Tarde Galera estou criando uma tela de login no java mais infelizmente esta dando a mensagem de erro e nao consigo achar o erro a mensagem é a seguinte:
java.lang.UnsupportedOperationException: Not supported yet

o codigo é:

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package br.com.infox.telas;

import java.sql.*;
import br.com.infox.dal.ModuloConexao;
import javax.swing.JOptionPane;

/**
*

  • @author windows
    */
    public class TelaLogin extends javax.swing.JFrame {

    Connection conexao = null;
    PreparedStatement pst = null;
    ResultSet rs = null;

    public void logar() {
    String sql = “select * from tbusuarios where login=? and senha=?”;

     try {
    

//as linhas abaixo preparam a consulta ao banco de dados relacionado ao que foi digitado

        pst = conexao.prepareStatement(sql);
        pst = setString(1, txtusuario.getText());
        pst = setString(2, txtsenha.getText());

//a linha abaixo execulta a consulta ao banco de dados
rs = pst.executeQuery();

//se existir login e senha acessar tela principal se nao exibir msg
if (rs.next()) {
TelaPrincipal principal = new TelaPrincipal();
principal.setVisible(true);

        } else {
            JOptionPane.showMessageDialog(null, "Usuario e/ou senha invalido");
        }

    } catch (Exception e) {
        JOptionPane.showMessageDialog(null, e);
    }

}

public TelaLogin() {
    initComponents();
    conexao = ModuloConexao.conector();
    System.out.println(conexao);
}

/**
 * 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();
    txtusuario = new javax.swing.JTextField();
    jLabel2 = new javax.swing.JLabel();
    txtsenha = new javax.swing.JPasswordField();
    btnlogin = new javax.swing.JButton();

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    setResizable(false);

    jLabel1.setText("Usuário");

    txtusuario.setText(" ");

    jLabel2.setText("Senha");

    btnlogin.setText("Login");
    btnlogin.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            btnloginActionPerformed(evt);
        }
    });

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addGap(31, 31, 31)
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                .addComponent(btnlogin)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jLabel1)
                        .addComponent(jLabel2))
                    .addGap(18, 18, 18)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addComponent(txtusuario, javax.swing.GroupLayout.DEFAULT_SIZE, 230, Short.MAX_VALUE)
                        .addComponent(txtsenha))))
            .addContainerGap(76, Short.MAX_VALUE))
    );
    layout.setVerticalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addGap(59, 59, 59)
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                .addComponent(jLabel1)
                .addComponent(txtusuario, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
            .addGap(18, 18, 18)
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                .addComponent(jLabel2)
                .addComponent(txtsenha, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
            .addGap(18, 18, 18)
            .addComponent(btnlogin, javax.swing.GroupLayout.PREFERRED_SIZE, 32, javax.swing.GroupLayout.PREFERRED_SIZE)
            .addContainerGap(59, Short.MAX_VALUE))
    );

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

private void btnloginActionPerformed(java.awt.event.ActionEvent evt) {                                         
   
 // chamando o metodo logar
 logar();
    
    
}                                        

/**
 * @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(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>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(() -> {
        new TelaLogin().setVisible(true);
    });
}

// Variables declaration - do not modify                     
private javax.swing.JButton btnlogin;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JPasswordField txtsenha;
private javax.swing.JTextField txtusuario;
// End of variables declaration                   

private PreparedStatement setString(int i, String text) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

}

se alguem poder ajudar agradeço desde já

Essa exceção você mesmo está disparando… ao chamar o método setString()

throw new UnsupportedOperationException("Not supported yet.");

Você tem que definir o comportamento deste metodo.

Olá amigo , sou novo em java estou estudando o java poderia me explicar como se faz isso ?
agradeço muito…

acredito que neste trecho…

pst = conexao.prepareStatement(sql);
pst = setString(1, txtusuario.getText());
pst = setString(2, txtsenha.getText());

o que você realmente queria/precisa fazer …seja isto:

pst = conexao.prepareStatement(sql);
pst.setString(1, txtusuario.getText());
pst.setString(2, txtsenha.getText());

Aquele método setString() da sua classe… você deve ter criado ele a partir dos wizards da IDE.

Agora no incio… a melhor coisa que tu pode fazer é nao usar uma IDE.

Aprenda no braço, assim você vai entender de onde as coisas vem e p/ onde vão.

Abs