samedi 12 mai 2018

I don't know why I keep getting these error when any of my code is not showing any warning [duplicate]

This question already has an answer here:

I made a create account page with some fields in it.please help as i am not able to find any error. I am creating a create account page with three fields which have random number generation and i am getting error about those fields only but i am not able to spot where the error is. here is my code

import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;

import java.util.Random;

import javax.swing.DefaultComboBoxModel;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.border.EmptyBorder;
import javax.swing.border.LineBorder;
import javax.swing.border.TitledBorder;

import com.toedter.calendar.JDateChooser;
import javax.swing.ButtonGroup;

@SuppressWarnings("serial")
public class Create_account extends JFrame {
Connection conn;
ResultSet rs;
PreparedStatement pst;

private JPanel contentPane;
private JTextField textField;
private JTextField textField_1;
private JTextField textField_2;
private JTextField textField_5;
private JTextField textField_3;
private JTextField textField_4;
private JTextField textField_6;
private JTextField textField_7;
private JTextField textField_8;
private final ButtonGroup buttonGroup = new ButtonGroup();

/**
 * Launch the application.
 */
public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                Create_account frame = new Create_account();
                Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
                frame.setLocation(dim.width/2-frame.getSize().width/2, 
dim.height/2-frame.getSize().height/2);
                frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

public void RandomAcc() {
    Random ra = new Random(0);
    int value = ra.nextInt(10000+1);
    textField.setText("" + value);
}

public void Bal() {
    String sql = "insert into Balances(Name,Acc,MICR_No,Balance)values 
(?,?,?,?)";
    try {
        pst = conn.prepareStatement(sql);
        pst.setString(1, textField_3.getText());
        pst.setString(2, textField.getText());
        pst.setString(3, textField_1.getText());
        pst.setString(4, textField_8.getText());
        pst.execute();
    } catch (Exception e) {
        JOptionPane.showMessageDialog(null, e);
    }
}

/**
 * Create the frame.
 */
@SuppressWarnings({ "rawtypes", "unchecked" })
public Create_account() {
    super("Create Account");
    setAlwaysOnTop(true);
    setResizable(false);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setBounds(100, 100, 766, 542);
    contentPane = new JPanel();
    contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    setContentPane(contentPane);
    contentPane.setLayout(null);

    conn = javaconnect.ConncrDB();

    RandomAcc();


    JLabel label = new JLabel("");
    label.setIcon(new ImageIcon("C:\\Users\\Mourya\\Desktop\\Java 
    Project\\Banking_Management_System\\icons\\Untitled-4.png"));
    label.setBounds(-11, 11, 232, 68);
    contentPane.add(label);

    JLabel lblNewLabel = new JLabel("Account No.");
    lblNewLabel.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblNewLabel.setBounds(58, 120, 87, 30);
    contentPane.add(lblNewLabel);

    JLabel lblNewLabel_1 = new JLabel("MICR No.");
    lblNewLabel_1.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblNewLabel_1.setBounds(58, 161, 87, 28);
    contentPane.add(lblNewLabel_1);

    JLabel lblPin = new JLabel("Pin");
    lblPin.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblPin.setBounds(58, 200, 87, 26);
    contentPane.add(lblPin);

    JLabel lblNewLabel_2 = new JLabel("Account Type");
    lblNewLabel_2.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblNewLabel_2.setBounds(58, 237, 87, 27);
    contentPane.add(lblNewLabel_2);

    JLabel lblNewLabel_3 = new JLabel("Gender");
    lblNewLabel_3.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblNewLabel_3.setBounds(58, 275, 87, 30);
    contentPane.add(lblNewLabel_3);

    JLabel lblNewLabel_4 = new JLabel("Address");
    lblNewLabel_4.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblNewLabel_4.setBounds(58, 319, 87, 28);
    contentPane.add(lblNewLabel_4);

    textField = new JTextField();
    textField.setEditable(false);
    textField.setBounds(168, 120, 187, 27);
    contentPane.add(textField);
    textField.setColumns(10);

    textField_1 = new JTextField();
    textField_1.setEditable(false);
    textField_1.setColumns(10);
    textField_1.setBounds(168, 161, 187, 27);
    contentPane.add(textField_1);

    textField_2 = new JTextField();
    textField_2.setEditable(false);
    textField_2.setColumns(10);
    textField_2.setBounds(168, 202, 187, 27);
    contentPane.add(textField_2);

    textField_5 = new JTextField();
    textField_5.setColumns(10);
    textField_5.setBounds(168, 322, 187, 27);
    contentPane.add(textField_5);

    JComboBox comboBox = new JComboBox();
    comboBox.setModel(new DefaultComboBoxModel(new String[] {"Select", 
    "Savings", "Current"}));
    comboBox.setBounds(168, 242, 187, 20);
    contentPane.add(comboBox);

    JRadioButton male = new JRadioButton("Male");
    buttonGroup.add(male);
    male.setBounds(168, 281, 55, 23);
    contentPane.add(male);

    JRadioButton female = new JRadioButton("Female");
    buttonGroup.add(female);
    female.setBounds(225, 281, 64, 23);
    contentPane.add(female);

    JRadioButton other = new JRadioButton("Other");
    buttonGroup.add(other);
    other.setBounds(291, 281, 64, 23);
    contentPane.add(other);

    JLabel lblName = new JLabel("Name");
    lblName.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblName.setBounds(385, 120, 111, 30);
    contentPane.add(lblName);

    JLabel lblDateOfBirth = new JLabel("Date of Birth");
    lblDateOfBirth.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblDateOfBirth.setBounds(385, 161, 111, 28);
    contentPane.add(lblDateOfBirth);

    JLabel lblNationality = new JLabel("Nationality");
    lblNationality.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblNationality.setBounds(385, 200, 111, 26);
    contentPane.add(lblNationality);

    JLabel lblCaste = new JLabel("Caste");
    lblCaste.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblCaste.setBounds(385, 237, 111, 27);
    contentPane.add(lblCaste);

    JLabel lblMobile = new JLabel("Mobile");
    lblMobile.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblMobile.setBounds(385, 275, 111, 30);
    contentPane.add(lblMobile);

    JLabel lblSecurityQuestion = new JLabel("Security Question");
    lblSecurityQuestion.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblSecurityQuestion.setBounds(385, 319, 111, 28);
    contentPane.add(lblSecurityQuestion);

    textField_3 = new JTextField();
    textField_3.setColumns(10);
    textField_3.setBounds(506, 120, 204, 27);
    contentPane.add(textField_3);

    textField_4 = new JTextField();
    textField_4.setColumns(10);
    textField_4.setBounds(506, 237, 204, 27);
    contentPane.add(textField_4);

    textField_6 = new JTextField();
    textField_6.setColumns(10);
    textField_6.setBounds(506, 275, 204, 27);
    contentPane.add(textField_6);

    JComboBox comboBox_1 = new JComboBox();
    comboBox_1.setModel(new DefaultComboBoxModel(new String[] {"Select", 
    "What is your childhood nickname?", "What is your favorite movie?", 
    "What is your first teacher's name?", "What is your pet's name?", "What 
    is your favorite book?"}));
    comboBox_1.setBounds(506, 319, 204, 26);
    contentPane.add(comboBox_1);

    JDateChooser dateChooser = new JDateChooser();
    dateChooser.setBounds(506, 161, 204, 28);
    contentPane.add(dateChooser);

    JComboBox comboBox_2 = new JComboBox();
    comboBox_2.setModel(new DefaultComboBoxModel(new String[] {"Select", 
    "Hindu", "Muslim", "Sikh", "Christian", "Jain"}));
    comboBox_2.setBounds(506, 200, 204, 25);
    contentPane.add(comboBox_2);

    JLabel lblAnswer = new JLabel("Answer");
    lblAnswer.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblAnswer.setBounds(385, 369, 111, 28);
    contentPane.add(lblAnswer);



    JButton btnNewButton = new JButton("Create");
    btnNewButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            String sql = "insert into Account(Acc, Name, Acc_Type, MICR_No, 
    DOB, PIN, Nationality, Caste, Gender, Mobile, Address, Sec_Q, Sec_A, 
    Balance)values (?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
            try {
                pst = conn.prepareStatement(sql);
                pst.setString(1, textField.getText() );
                pst.setString(2, textField_3.getText() );
                pst.setString(3, (String) comboBox.getSelectedItem() );
                pst.setString(4, textField_1.getText() );
                pst.setString(5, ((JTextField) 
       dateChooser.getDateEditor().getUiComponent()).getText() );
                pst.setString(6, textField_2.getText() );
                pst.setString(7, (String) comboBox_2.getSelectedItem() );
                pst.setString(8, textField_4.getText() );

                male.setActionCommand("Male");
                female.setActionCommand("Female");
                other.setActionCommand("Other");
                pst.setString(9, 
                buttonGroup.getSelection().getActionCommand() );

                pst.setString(10, textField_6.getText() );
                pst.setString(11, textField_5.getText() );
                pst.setString(12, (String) comboBox_1.getSelectedItem() );
                pst.setString(13, textField_7.getText() );
                pst.setString(14, textField.getText() );

                pst.execute();
                JOptionPane.showMessageDialog(null, "Congatulations! \n 
Account has been created.");
                Bal();
            } catch (Exception e) {
                // TODO: handle exception
                JOptionPane.showMessageDialog(null, e);
            }
        }
    });
    btnNewButton.setIcon(new 
    ImageIcon("C:\\Users\\Mourya\\Downloads\\icons8-add-user-male-16.png"));
    btnNewButton.setBounds(168, 430, 97, 23);
    contentPane.add(btnNewButton);

    textField_7 = new JTextField();
    textField_7.setColumns(10);
    textField_7.setBounds(506, 370, 204, 27);
    contentPane.add(textField_7);

    JButton btnNewButton_1 = new JButton("Clear");
    btnNewButton_1.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            textField_3.setText("");
            textField_4.setText("");
            textField_5.setText("");
            textField_6.setText("");
            textField_7.setText("");
            textField_8.setText("");
            comboBox.setSelectedIndex(0);
            comboBox_1.setSelectedIndex(0);
            comboBox_2.setSelectedIndex(0);

        }
    });
    btnNewButton_1.setIcon(new 
    ImageIcon("C:\\Users\\Mourya\\Downloads\\icons8-delete-16.png"));
    btnNewButton_1.setBounds(350, 430, 89, 23);
    contentPane.add(btnNewButton_1);

    JButton btnNewButton_2 = new JButton("Back");
    btnNewButton_2.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            setVisible(false);
            Authentication ob = new Authentication();
            ob.setVisible(true);
        }
    });
    btnNewButton_2.setIcon(new 
    ImageIcon("C:\\Users\\Mourya\\Downloads\\icons8-go-back-16.png"));
    btnNewButton_2.setBounds(528, 430, 89, 23);
    contentPane.add(btnNewButton_2);

    JLabel lblNewLabel_5 = new JLabel("Thank You for Banking with us!");
    lblNewLabel_5.setFont(new Font("Tahoma", Font.PLAIN, 13));
    lblNewLabel_5.setForeground(new Color(255, 69, 0));
    lblNewLabel_5.setBounds(278, 477, 179, 25);
    contentPane.add(lblNewLabel_5);

    JLabel lblNewLabel_6 = new JLabel("Copyrights(c) theDeepanshuMourya 
    2018.");
    lblNewLabel_6.setHorizontalAlignment(SwingConstants.TRAILING);
    lblNewLabel_6.setFont(new Font("Tahoma", Font.PLAIN, 10));
    lblNewLabel_6.setBounds(540, 483, 218, 20);
    contentPane.add(lblNewLabel_6);

    JLabel lblNewLabel_7 = new JLabel("All rights reserved.");
    lblNewLabel_7.setHorizontalAlignment(SwingConstants.TRAILING);
    lblNewLabel_7.setFont(new Font("Tahoma", Font.PLAIN, 10));
    lblNewLabel_7.setBounds(647, 498, 111, 14);
    contentPane.add(lblNewLabel_7);

    JLabel lblAmount = new JLabel("Amount");
    lblAmount.setFont(new Font("Tahoma", Font.PLAIN, 14));
    lblAmount.setBounds(58, 369, 111, 28);
    contentPane.add(lblAmount);

    textField_8 = new JTextField();
    textField_8.setColumns(10);
    textField_8.setBounds(168, 372, 187, 25);
    contentPane.add(textField_8);

    JPanel panel = new JPanel();
    panel.setBorder(new TitledBorder(new LineBorder(new Color(0, 102, 153), 
    3), "Create Account", TitledBorder.LEADING, TitledBorder.TOP, new 
    Font("Tahoma", 
    Font.PLAIN, 24), new Color(0, 0, 204)));
    panel.setBounds(35, 90, 694, 382);
    contentPane.add(panel);
 }

}

here is the error which I keep getting

java.lang.NullPointerException
at Create_account.RandomAcc(Create_account.java:72)
at Create_account.<init>(Create_account.java:106)
at Create_account$1.run(Create_account.java:58)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
at java.awt.EventQueue.access$500(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
atjava.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)




Aucun commentaire:

Enregistrer un commentaire