我必须将excel中的时间值插入mysql,如下图所示。
int punchin = (int) row.getCell(1).getNumericCellValue();
System.out.println("::::::::::::::::: "+punchin);
int punchout = (int) row.getCell(2).getNumericCellValue();
System.out.println("::::::::::::::::: "+punchout);
int duration = (int) row.getCell(3).getNumericCellValue();
System.out.println("::::::::::::::::: "+duration);
但我无法获得正确的价值。
答案 0 :(得分:0)
使用MySQL for Excel:https://dev.mysql.com/downloads/windows/excel/
它非常易于使用。安装后,在Excel中转到Data选项卡,最后是Mysql for Excel。
假设您现在已经建立了与数据库的连接,您现在需要做的就是: