gpt4 book ai didi

java - 使用java将csv文件导入oracle数据库

转载 作者:行者123 更新时间:2023-11-30 07:01:12 25 4
gpt4 key购买 nike

我收到以下错误

  Java.lang.ArrayIndexOutOfBoundsException: 0
at oracle.jdbc.driver.OracleSql.main(OracleSql.java:1614)

我正在使用 eclipse indigo 和 oracle 10g。我该如何解决这个问题。有人可以帮助我吗?

我想将一个 csv 文件加载到 oracle 数据库中.. 我创建了一个名为 zt 的表,其中包含三列(id、s_date、data) CSV数据包含如下:

   a1,2015-04-15 17:40:20.0,18.5786    
a2,2015-04-15 16:20:59.0,16.7868
a3,2015-03-15 16:20:59.0,16.51689
a4,2015-04-16 16:20:55.0,24.789028
a5,2015-02-15 17:55:59.0,28.784145

代码

import java.io.FileReader;    
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.Statement;
import au.com.bytecode.opencsv.CSVReader;

public class ImportTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
readCsv();
}

public static void readCsv() {
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection conn =DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521/xe","system","arry");
PreparedStatement pstmt =conn.prepareStatement("Insert into zt values(?,?,?)");

CSVReader reader = new CSVReader(new FileReader("D:\\zzzzzzzz.csv"), ',');
String[] nextLine;
int i = 0;
while((nextLine = reader.readNext()) != null) {
i++;
pstmt.setString(1,nextLine[0]);
pstmt.setString(2,nextLine[1]);
pstmt.setDouble(3,Double.parseDouble(nextLine[2]));
}

pstmt.close();
conn.commit();
conn.close();
} catch(Exception e) {
e.printStackTrace();
}
}
}

最佳答案

对于初学者你有

pstmt.setString(1,nextLine[0]);
pstmt.setString(1,nextLine[1]);
pstmt.setDouble(2,Double.parseDouble(nextLine[2]))

请注意,您已将第一个参数重复两次,如果异常来自数据库,那么这很可能就是原因。

更多

IndexOutOfBoundsException在 Java 中是运行时异常。如文档中所述

Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range. Applications can subclass this class to indicate similar exceptions.

很明显,您没有先检查就访问了数组的索引。总是一件危险的事情。

我也同意,您的 CSV 文件似乎不正确,但无论哪种方式,您的问题都不仅限于此,您应该防范它。我添加了代码以显示基本保护措施

只需像下面这样在 while 循环中检查长度

 while((nextLine = reader.readNext()) != null){
i++;
// Remember length 3 = index 2
if (nextLine.length == 3){
pstmt.setString(1,nextLine[0]);
//I have changed it to 2 from 1
pstmt.setString(2,nextLine[1]);
pstmt.setDouble(2,Double.parseDouble(nextLine[2]));
}
}

关于java - 使用java将csv文件导入oracle数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30023659/

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