I have a File called Customer_Info.csv which has sample data like :
CUST_ID FIRST_NAME LAST_NAME USER_TYPE REPORTS_TO_ID EMAIL FIRST_TIME_LOGGED_IN FIRST_TIME_LOGIN_DATE ADDRESS_LINE1 ADDRESS_LINE2 CITY STATE ZIP
10001 MICHELLE VILLEGAS3 Savings SRINATH MICHELLE.VILLEGAS3@NOBODY.COM Y 07-10-18 1050 WEST FIFTH STREET AZUSA IND 917023308
This is the table in which i need to store the data. I am storing everything in string format because it is just a staging table.
Create Table Customer_Info_ST
 (
 Cust_ID varchar(5),
 First_Name varchar(15),
 Last_Name varchar(15),
 User_Type varchar(10),
 Report_To_Id varchar(10),
 Email varchar(30),
 First_Time_Logged_In varchar(1),
 First_Time_Login_Date varchar(11),
 Address_Line1 varchar(30),
 Address_Line2 varchar(30),
 City varchar(15),
 State varchar(3),
 Zip varchar(12)
 );
I have written the following code to store it in the table.
public class CustInfoDataLoader {
static String sql, tableName;
private static PreparedStatement pstmt;
private static Statement stmt;
private static final String filePath = "Customer_Info.csv";
public static void main(String[] args) throws SQLException, FileNotFoundException, IOException, ParseException {
    readCsv("Customer_info_ST"); //Line 24 in my code 
    //readCsvUsingLoad();
}
private static void readCsv(String tableName) throws FileNotFoundException, IOException, SQLException, ParseException {
    CSVReader csvreader = null;
    try{
        Reader reader = Files.newBufferedReader(Paths.get(filePath));
        csvreader = new CSVReaderBuilder(reader).withSkipLines(1).build();
        sql = "insert into ? values (?,?,?,?,?,?,?,?,?,?,?,?,?)";
        ManageDBResource.createConnectionToDB();
        pstmt = ManageDBResource.conn.prepareStatement(sql);
        String[] rowData = null;
        while((rowData = csvreader.readNext()) != null) {
            pstmt.setString(1, tableName);
            int i = 2;
            String state = rowData[11];
            for (String data : rowData) {
                if(i == 9 && data != null && state != "IND") {
                    java.text.SimpleDateFormat source = new java.text.SimpleDateFormat("MM-dd-yyyy");
                    java.util.Date date = source.parse(data);
                    java.text.SimpleDateFormat target = new java.text.SimpleDateFormat("yyyy-MM-dd");
                    data = target.format(date).toString();
                }
                pstmt.setString(i++,data);
                //System.out.print(data + " ");
            }
            int result = pstmt.executeUpdate();
            //System.out.println();
            if(result == 1) {
                System.out.println("Data loaded Successfully.");
            }
        }
    }
    catch (Exception e) {
        System.out.println(e.getMessage());
    }
    finally {
        pstmt.close();   //Line 69 in my code file
        csvreader.close();
    }
}
and I get the following error:
Exception in thread "main" java.lang.NullPointerException
at CustInfoDataLoader.readCsv(CustInfoDataLoader.java:69)
at CustInfoDataLoader.main(CustInfoDataLoader.java:24)
 
     
     
    