gpt4 book ai didi

java - 使用 opencsv 时出现 ArrayIndexOutOfBoundsException 错误

转载 作者:行者123 更新时间:2023-12-02 03:48:11 25 4
gpt4 key购买 nike

我希望有人能启发我为什么收到错误:“线程“main”中的异常 java.lang.ArrayIndexOutOfBoundsException: 1”

我正在使用 opencsv 从 csv 插入数据,并且代码确实有效,因为数据已按预期插入到表中。但是我得到了错误。

下面是我的代码:

    PreparedStatement sql_statement = null;         
String jdbc_insert_sql = "INSERT INTO wifi_users(email, first_name, last_name, gender, birthday, opted_in) VALUES (?, ?, ?, ?, ?, ?)";
sql_statement = conn.prepareStatement(jdbc_insert_sql);

/* Read CSV file in OpenCSV */
String inputCSVFile = "/Users/Gerry/Documents/workspace/sql_out_connection/users.csv";
CSVReader reader = new CSVReader(new FileReader(inputCSVFile));

/* Variables to loop through the CSV File */
String [] nextLine; /* for every line in the file */
int lnNum = 0; /* line number */
while ((nextLine = reader.readNext()) != null) {
lnNum++;
sql_statement.setString(1,(nextLine[0]));
sql_statement.setString(2,(nextLine[1]));
sql_statement.setString(3,(nextLine[2]));
sql_statement.setString(4,(nextLine[3]));
sql_statement.setString(5,(nextLine[4]));
sql_statement.setDouble(6,Double.parseDouble(nextLine[5]));
/* execute the insert statement */
sql_statement.executeUpdate();
}

有人知道我为什么会收到此错误吗?

最佳答案

CSV 文件中的某一行的值少于预期的最小值 6 个值 (0-5),因此出现 ArrayIndexOutOfBoundsException。

在继续数据库更新之前,您可能应该验证是否需要 6 个值。

顺便说一句,您不需要在值两边添加括号。最好像这样...

sql_statement.setString(1, nextLine[0]);

关于java - 使用 opencsv 时出现 ArrayIndexOutOfBoundsException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36140878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com