我有一个名为Customer_Info.csv的文件,该文件具有以下示例数据:
CUST_ID FIRST_NAME LAST_NAME USER_TYPE REPORTS_TO_ID EMAIL FIRST_TIME_LOGGED_IN FIRST_TIME_LOGIN_DATE ADDRESS_LINE1 ADDRESS_LINE2城市州邮政编码
10001 MICHELLE VILLEGAS3节省股利MICHELLE.VILLEGAS3@NOBODY.COM是18年7月10日1050西第五街AZUSA IND 917023308
这是我需要在其中存储数据的表。我将所有内容都存储为字符串格式,因为它只是一个临时表。
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)
);
我编写了以下代码以将其存储在表中。
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();
}
}
,我收到以下错误消息:
Exception in thread "main" java.lang.NullPointerException
at CustInfoDataLoader.readCsv(CustInfoDataLoader.java:69)
at CustInfoDataLoader.main(CustInfoDataLoader.java:24)
答案 0 :(得分:2)
在PreparedStatement
之后可以关闭executeUpdate()
吗?
就像上面的示例中提到的那样:
String sql = " INSERT INTO TABLE_(name,email,phone,id) VALUES(?,?,?,?) ";
try {
BufferedReader bReader = new BufferedReader(new
FileReader("1000rows.csv"));
String line = "";
while ((line = bReader.readLine()) != null) {
try {
if (line != null)
{
String[] array = line.split(",+");
for(String result:array)
{
System.out.println(result);
//Create prepared Statement here and set them and execute them
PreparedStatement ps = yourConnecionObject.createPreparedStatement(sql);
ps.setString(1,str[0]);
ps.setString(2,str[1]);
ps.setString(3,str[2]);
ps.setString(4,strp[3])
ps.excuteUpdate();
ps. close()
//Assuming that your line from file after split will follow that sequence
}
}
} catch (IOException ex) {
ex.printStackTrace();
}
finally
{
if (bReader == null)
{
bReader.close();
}
}
}
} catch (FileNotFoundException ex) {
ex.printStackTrace();
}