0

修复错误,我需要将 csv 文件导入(存储)到 mysql 数据库表

Class.forName("com.mysql.jdbc.Driver");
    java.sql.Connection c = null;
    c = DriverManager.getConnection("jdbc:mysql://localhost:3306/Sample", "root", "root");
    Statement s = null;
    s = (Statement) c.createStatement();
    int i = s.executeUpdate("load data local infile 'E:\\Book1.csv' into table sample.copy_table fields terminated by ',' optionally enclosed by '"' lines terminated by '\r\n'");

返回错误:

Error:Invalid character constant in this line ("load data local infile'E:\\Book1.csv'.......)
java.sql.SQLException: Unable to open file 'E:Book1.csv'for 'LOAD DATA LOCAL INFILE' command.Due to underlying IOException: 

** BEGIN NESTED EXCEPTION ** 

java.io.FileNotFoundException
MESSAGE: E:Book1.csv (The system cannot find the file specified)
4

1 回答 1

1

试试这个,你忘了逃跑"

int i = s.executeUpdate("load data local infile 'E:\\Book1.csv' into table sample.copy_table fields terminated by ',' optionally enclosed by '\"' lines terminated by '\r\n'");
于 2013-08-08T11:49:54.263 回答