gpt4 book ai didi

java - 如何使用多线程将List中的数据插入到DB表中以提高性能?

转载 作者:行者123 更新时间:2023-11-29 04:47:28 24 4
gpt4 key购买 nike

我必须将员工数据从文本文件(每条记录用制表符分隔)读入 ArrayList。然后我必须将这个员工对象从列表插入到数据库中的员工表。为此,我逐一迭代列表元素,并一次将一个员工详细信息插入数据库。出于性能考虑,不推荐使用这种方法,因为我们可以拥有超过 100k 条记录,并且插入整个数据将花费很多时间。

我们如何在将数据从列表插入数据库时​​使用多线程来提高性能。还有我们如何使用 CountDownLatch 和 ExecutorService 类来优化这个场景。

读写测试

public class ReadWriteTest {

public static void main(String... args) {
BufferedReader br = null;
String filePath = "C:\\Documents\\EmployeeData.txt";
try {
String sCurrentLine;
br = new BufferedReader(new FileReader(filePath));
List<Employee> empList = new ArrayList<Employee>();

while ((sCurrentLine = br.readLine()) != null) {
String[] record = sCurrentLine.split("\t");
Employee emp = new Employee();
emp.setId(record[0].trim());
emp.setName(record[1].trim());
emp.setAge(record[2].trim());
empList.add(emp);
}
System.out.println(empList);

writeData(empList);

} catch (IOException | SQLException e) {
e.printStackTrace();
}
}

public static void writeData(List<Employee> empList) throws SQLException {
Connection con =null;
try{
Class.forName("oracle.jdbc.driver.OracleDriver");

con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","system","oracle");
for(Employee emp : empList)
{
PreparedStatement stmt=con.prepareStatement("insert into Employee values(?,?,?)");
stmt.setString(1,emp.getId());
stmt.setString(2,emp.getName());
stmt.setString(3,emp.getAge());
stmt.executeUpdate();
}
}catch(Exception e){
System.out.println(e);
}
finally{
con.close();
}
}
}

员工类

public class Employee {

String id;
String name;
String age;

public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAge() {
return age;
}
public void setAge(String age) {
this.age = age;
}
@Override
public String toString() {
return "Employee [id=" + id + ", name=" + name + ", age=" + age + "]";
}
}

EmployeeData.txt

1   Sachin  20
2 Sunil 30
3 Saurav 25

最佳答案

直接导入

Java 应用程序方法的替代方法是数据库方法。所有主要数据库都有可以将数据直接从文本文件导入表的工具。

PostgresCOPY命令。这可以是 run from the command line或从 SQL 中。参见 the wiki page供讨论。

查看您的数据库工具集。

关于java - 如何使用多线程将List中的数据插入到DB表中以提高性能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36607104/

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