3
我無法將excel文件信息存儲到數據庫表中。任何人都可以幫助我如何將文件數據保存到具有不同數據類型(如bigint,varchar和date)的表中。在這裏,我提供了將excel文件按記錄保存到數據庫記錄的程序?如何將excel文件數據保存到mysql數據庫表中作爲記錄使用apache POI記錄
import java.io.*;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.util.*;
import java.sql.*;
public class XLToDB {
public static final String INSERT_RECORDS = "INSERT INTO RECORDS" + "(SNO, ID, NAME, VALUE1, VALUE2, VALUE3, VALUE4, VALUE5) VALUES" + "(?,?,?,?,?,?,?,?)";
private static String GET_COUNT = "SELECT COUNT(*) FROM RECORDS";
public static void main(String[] args) throws Exception{
XLToDB obj = new XLToDB();
obj.insertRecords("E:/test.xlsx");
}
public void insertRecords(String filePath){
/* Create Connection objects */
Connection con = null;
PreparedStatement prepStmt = null;
java.sql.Statement stmt = null;
int count = 0;
ArrayList<String> mylist = new ArrayList<String>();
try{
con = DBHelper.getConnection();
System.out.println("Connection :: ["+con+"]");
prepStmt = con.prepareStatement(INSERT_RECORDS);
stmt = con.createStatement();
ResultSet result = stmt.executeQuery(GET_COUNT);
while(result.next()) {
int val = result.getInt(1);
System.out.println(val);
count = val+1;
}
prepStmt.setInt(1,count);
/* We should now load excel objects and loop through the worksheet data */
FileInputStream fis = new FileInputStream(new File(filePath));
/* Load workbook */
XSSFWorkbook workbook = new XSSFWorkbook (fis);
/* Load worksheet */
XSSFSheet sheet = workbook.getSheetAt(0);
// we loop through and insert data
Iterator ite = sheet.rowIterator();
while(ite.hasNext()) {
Row row = (Row) ite.next();
Iterator<Cell> cellIterator = row.cellIterator();
while(cellIterator.hasNext()) {
Cell cell = cellIterator.next();
switch(cell.getCellType()) {
case Cell.CELL_TYPE_STRING: //handle string columns
prepStmt.setString(1, cell.getStringCellValue());
break;
case Cell.CELL_TYPE_NUMERIC: //handle double data
prepStmt.setDouble(2,cell.getNumericCellValue());
break;
}
}
//we can execute the statement before reading the next row
prepStmt.executeUpdate();
}
/* Close input stream */
fis.close();
/* Close prepared statement */
prepStmt.close();
/* COMMIT transaction */
con.commit();
/* Close connection */
con.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
_I我不能夠存儲EXELL文件信息存入數據庫table_不是vaild聲明。請向我們展示您面臨的錯誤或當前輸出? – 2014-10-30 09:55:32
我得到了答案#San謝謝 – 2014-10-30 10:58:08
在問題下面發佈答案可能有助於他人 – 2014-10-30 10:59:43