POI往Mysql中,导入导出Excel

转载:http://blog.csdn.net/xusongsong520/article/details/7926809#comments

1.导入相应的poi jar包,我用的是3.7;

2.导入Excel文件到数据的类(这里我把解析Excel文件的操作封装成一个类,在action中只要调用该类就可以了):

HSSF - 提供读写 Microsoft Excel格式档案的功能。
XSSF - 提供读写 Microsoft Excel  OOXML格式档案的功能。 OOXML是由 微软 公司为Office 2007产品开发的技术规范,现已成为国际文档格式标准,兼容前国际标准 开放文档格式 和中国文档标准 标文通 (外语简称: UOF )。于2006年12月成为 ECMA 标准。
HWPF - 提供读写 Microsoft Word格式档案的功能。
HSLF - 提供读写Microsoft PowerPoint格式档案的功能。
HDGF - 提供读写 Microsoft Visio格式档案的功能。


Java代码
  1. /**  
  2.      * POI:解析Excel文件中的数据并把每行数据封装成一个实体  
  3.      * @param fis 文件输入流  
  4.      * @return List<EmployeeInfo> Excel中数据封装实体的集合  
  5.      */  
  6.     public static List<EmployeeInfo> importEmployeeByPoi(InputStream fis) {   
  7.            
  8.         List<EmployeeInfo> infos = new ArrayList<EmployeeInfo>();   
  9.         EmployeeInfo employeeInfo = null;   
  10.            
  11.         try {   
  12.             //创建Excel工作薄   我使用的是XSSFWorkbook
  13.             HSSFWorkbook hwb = new HSSFWorkbook(fis);   
  14.             //得到第一个工作表   
  15.             HSSFSheet sheet = hwb.getSheetAt(0);   
  16.             HSSFRow row = null;   
  17.             //日期格式化   
  18.             DateFormat ft = new SimpleDateFormat("yyyy-MM-dd");   
  19.             //遍历该表格中所有的工作表,i表示工作表的数量 getNumberOfSheets表示工作表的总数    
  20.             for(int i = 0; i < hwb.getNumberOfSheets(); i++) {   
  21.                 sheet = hwb.getSheetAt(i);   
  22.                 //遍历该行所有的行,j表示行数 getPhysicalNumberOfRows行的总数   
  23.                 for(int j = 1; j < sheet.getPhysicalNumberOfRows(); j++) {   
  24.                     row = sheet.getRow(j);   
  25.                     employeeInfo = new EmployeeInfo();   
  26.                        
  27.                     /*此方法规定Excel文件中的数据必须为文本格式,所以在解析数据的时候未进行判断  
  28.                     //方法1:Excel解析出来的数字为double类型,要转化为Long类型必须做相应的处理(一开始用的方法,比较笨。)  
  29.                     //先把解析出来的double类型转化为String类型,然后截取String类型'.'以前的字符串,最后把字符串转化为Long类型。  
  30.                     String orgId = row.getCell(0).toString();  
  31.                     String orgId1 = orgId.substring(0, orgId.indexOf('.'));  
  32.                     //方法2:其实double类型可以通过(long)Double这样直接转化为Long类型。  
  33.                     employeeInfo.setOrgId((long)(row.getCell(0).getNumericCellValue()));  
  34.                     employeeInfo.setEmployeeNumber(row.getCell(1).toString());  
  35.                     employeeInfo.setFullName(row.getCell(2).toString());  
  36.                     employeeInfo.setSex(row.getCell(3).toString());  
  37.                     if(row.getCell(4) != null) {  
  38.                         try {  
  39.                             employeeInfo.setDateOfBirth(ft.parse(row.getCell(4).toString()));  
  40.                         } catch (ParseException e) {  
  41.                             e.printStackTrace();  
  42.                         }  
  43.                     }  
  44.                     employeeInfo.setTownOfBirth(row.getCell(5).toString());  
  45.                     employeeInfo.setNationalIdentifier(row.getCell(6).toString());*/  
  46.                        
  47.                     //此方法调用getCellValue(HSSFCell cell)对解析出来的数据进行判断,并做相应的处理   
  48.                     if(ImportEmployee.getCellValue(row.getCell(0)) != null && !"".equals(ImportEmployee.getCellValue(row.getCell(0)))) {   
  49.                         employeeInfo.setOrgId(Long.valueOf(ImportEmployee.getCellValue(row.getCell(0))));   
  50.                     }   
  51.                     employeeInfo.setEmployeeNumber(ImportEmployee.getCellValue(row.getCell(1)));   
  52.                     employeeInfo.setFullName(ImportEmployee.getCellValue(row.getCell(2)));   
  53.                     employeeInfo.setSex(ImportEmployee.getCellValue(row.getCell(3)));   
  54.                     if(ImportEmployee.getCellValue(row.getCell(4)) != null && !"".equals(ImportEmployee.getCellValue(row.getCell(4)))) {   
  55.                         try {   
  56.                             employeeInfo.setDateOfBirth(ft.parse(ImportEmployee.getCellValue(row.getCell(4))));   
  57.                         } catch (ParseException e) {   
  58.                             e.printStackTrace();   
  59.                         }   
  60.                         employeeInfo.setTownOfBirth(ImportEmployee.getCellValue(row.getCell(5)));   
  61.                     }   
  62.                     employeeInfo.setNationalIdentifier(ImportEmployee.getCellValue(row.getCell(6)));   
  63.                     infos.add(employeeInfo);   
  64.                 }   
  65.                    
  66.             }   
  67.         } catch (IOException e) {   
  68.             e.printStackTrace();   
  69.         }   
  70.         return infos;   
  71.     }   
  72.     //判断从Excel文件中解析出来数据的格式   
  73.     private static String getCellValue(HSSFCell cell){   
  74.         String value = null;   
  75.         //简单的查检列类型   
  76.         switch(cell.getCellType())   
  77.         {   
  78.             case HSSFCell.CELL_TYPE_STRING://字符串   
  79.                 value = cell.getRichStringCellValue().getString();   
  80.                 break;   
  81.             case HSSFCell.CELL_TYPE_NUMERIC://数字   
  82.                 long dd = (long)cell.getNumericCellValue();   
  83.                 value = dd+"";   
  84.                 break;   
  85.             case HSSFCell.CELL_TYPE_BLANK:   
  86.                 value = "";   
  87.                 break;      
  88.             case HSSFCell.CELL_TYPE_FORMULA:   
  89.                 value = String.valueOf(cell.getCellFormula());   
  90.                 break;   
  91.             case HSSFCell.CELL_TYPE_BOOLEAN://boolean型值   
  92.                 value = String.valueOf(cell.getBooleanCellValue());   
  93.                 break;   
  94.             case HSSFCell.CELL_TYPE_ERROR:   
  95.                 value = String.valueOf(cell.getErrorCellValue());   
  96.                 break;   
  97.             default:   
  98.                 break;   
  99.         }   
  100.         return value;   
  101.     }  


 action中的写法:

    因为是做练习,只是熟悉它的用法,这里做的比较简单。

Java代码  复制代码   收藏代码
  1. //从页面接收参数:文件的路径   
  2.         String excelPath = request.getParameter("excelPath");   
  3.         //输入流   
  4.         InputStream fis = new FileInputStream(excelPath);   
  5.            
  6.         //JXL:得到解析Excel的实体集合   
  7.         // List<EmployeeInfo> infos = ImportEmployee.importEmployee(fis);   
  8.            
  9.         //POI:得到解析Excel的实体集合   
  10.         List<EmployeeInfo> infos = ImportEmployee.importEmployeeByPoi(fis);   
  11.            
  12.         //遍历解析Excel的实体集合   
  13.         for(EmployeeInfo info:infos) {   
  14.             //判断员工编号是否存在(存在:做修改操作;不存在:做新增操作)   
  15.             EmployeeInfo info1 = this.selectEmpByEmpNum(info.getEmployeeNumber());   
  16.             if(info1 == null) {   
  17.                 //把实体新加到数据库中   
  18.                 this.service.addEmployeeInfo(info);   
  19.             }else{   
  20.                 //把personId封装到实体   
  21.                 info.setPersonId(info1.getPersonId());   
  22.                 //更新实体   
  23.                 this.updatEmployeeInfo(info);   
  24.             }   
  25.         }   
  26.         //关闭流   
  27.         fis.close();  

 为了整个导入的完整性,最后附上jsp页面的代码:

Java代码  复制代码   收藏代码
  1. <input type="file" id="excelPath" name="excelPath"/>&nbsp;&nbsp;   
  2. <input type="button"  value="导入Excel" οnclick="importEmp()"/>   
  3.   
  4. -----------------------JS对导入的文件做简单的判断------------------------   
  5.   
  6. //Excel文件导入到数据库中   
  7. function importEmp(){   
  8.     //检验导入的文件是否为Excel文件   
  9.     var excelPath = document.getElementById("excelPath").value;   
  10.     if(excelPath == null || excelPath == ''){   
  11.         alert("请选择要上传的Excel文件");   
  12.         return;   
  13.     }else{   
  14.         var fileExtend = excelPath.substring(excelPath.lastIndexOf('.')).toLowerCase();    
  15.         if(fileExtend == '.xls'){   
  16.         }else{   
  17.             alert("文件格式需为'.xls'格式");   
  18.             return;   
  19.         }   
  20.     }   
  21.     //提交表单   
  22.     document.getElementById("empForm").action="<%=request.getContextPath()%>/EmpExcel.action.EmpExcelAction.do?method=importEmployeeInfos";     
  23.     document.getElementById("empForm").submit();   
  24. }  

3.导出为Excel文件:

Java代码  复制代码   收藏代码
  1. /**  
  2.  * POI : 导出数据,存放于Excel中  
  3.  * @param os 输出流 (action: OutputStream os = response.getOutputStream();)  
  4.  * @param employeeInfos 要导出的数据集合  
  5.  */  
  6. public static void exportEmployeeByPoi(OutputStream os, List<EmployeeInfo> employeeInfos) {   
  7.        
  8.     try {   
  9.         //创建Excel工作薄   
  10.         HSSFWorkbook book = new HSSFWorkbook();   
  11.         //在Excel工作薄中建一张工作表   
  12.         HSSFSheet sheet = book.createSheet("员工信息");   
  13.         //设置单元格格式(文本)   
  14.         //HSSFCellStyle cellStyle = book.createCellStyle();   
  15.         //第一行为标题行   
  16.         HSSFRow row = sheet.createRow(0);//创建第一行   
  17.         HSSFCell cell0 = row.createCell(0);   
  18.         HSSFCell cell1 = row.createCell(1);   
  19.         HSSFCell cell2 = row.createCell(2);   
  20.         HSSFCell cell3 = row.createCell(3);   
  21.         HSSFCell cell4 = row.createCell(4);   
  22.         //定义单元格为字符串类型   
  23.         cell0.setCellType(HSSFCell.CELL_TYPE_STRING);   
  24.         cell1.setCellType(HSSFCell.CELL_TYPE_STRING);   
  25.         cell2.setCellType(HSSFCell.CELL_TYPE_STRING);   
  26.         cell3.setCellType(HSSFCell.CELL_TYPE_STRING);   
  27.         cell4.setCellType(HSSFCell.CELL_TYPE_STRING);   
  28.         //在单元格中输入数据   
  29.         cell0.setCellValue("员工编号");   
  30.         cell1.setCellValue("员工姓名");   
  31.         cell2.setCellValue("员工性别");   
  32.         cell3.setCellValue("出生日期");   
  33.         cell4.setCellValue("身份证号");   
  34.         //循环导出数据到excel中   
  35.         for(int i = 0; i < employeeInfos.size(); i++) {   
  36.             EmployeeInfo employeeInfo = employeeInfos.get(i);   
  37.             //创建第i行   
  38.             HSSFRow rowi = sheet.createRow(i + 1);   
  39.             //在第i行的相应列中加入相应的数据   
  40.             rowi.createCell(0).setCellValue(employeeInfo.getEmployeeNumber());   
  41.             rowi.createCell(1).setCellValue(employeeInfo.getFullName());   
  42.             //处理性别(M:男 F:女)   
  43.             String sex = null;   
  44.             if("M".equals(employeeInfo.getSex())) {   
  45.                 sex = "男";   
  46.             }else {   
  47.                 sex = "女";   
  48.             }   
  49.             rowi.createCell(2).setCellValue(sex);   
  50.             //对日期的处理   
  51.             if(employeeInfo.getDateOfBirth() != null && !"".equals(employeeInfo.getDateOfBirth())){   
  52.                 java.text.DateFormat format1 = new SimpleDateFormat("yyyy-MM-dd");   
  53.                 rowi.createCell(3).setCellValue(format1.format(employeeInfo.getDateOfBirth()));   
  54.             }   
  55.             rowi.createCell(4).setCellValue(employeeInfo.getNationalIdentifier());   
  56.         }   
  57.         //写入数据  把相应的Excel 工作簿存盘   
  58.         book.write(os);   
  59.     } catch (IOException e) {   
  60.         e.printStackTrace();   
  61.     }   
  62. }  

除第二个,其它都未POI导入工程的文件。



### 回答1: Java可以使用Apache POI库来实现MySQL导入导出Excel的功能。 具体步骤如下: 1. 导入Apache POI库 在Java项目,需要导入Apache POI库,可以通过Maven或手动下载jar包的方式导入。 2. 连接MySQL数据库 使用JDBC连接MySQL数据库,获取需要导出的数据。 3. 创建Excel文件 使用Apache POI库创建Excel文件,并设置表头和数据。 4. 导出数据到Excel文件 将从MySQL数据库获取的数据Excel文件。 5. 保存Excel文件 将Excel文件保存到本地或服务器上。 6. 导入Excel文件到MySQL数据库 使用Apache POI库读取Excel文件的数据,并将数据插入到MySQL数据库。 以上就是Java实现MySQL导入导出Excel的基本步骤。具体实现可以参考Apache POI官方文档和相关教程。 ### 回答2: MySQL是一种常见的开源关系型数据库,而Excel是一种广泛使用的电子表格应用程序。将MySQL存储的数据导入Excel导出Excel数据到MySQL是开发人员经常需要完成的任务之一。Java是一种功能强大的面向对象编程语言,具有处理MySQL数据库Excel电子表格的能力。下面介绍如何使用Java实现MySQL导入导出Excel。 一、导出Excel 1. 创建Excel文档:可以使用Apache POI的HSSFWorkbook来创建Excel文档对象。 2. 获取MySQL数据:可以使用JDBC驱动程序获取MySQL数据库的数据,可以使用JDBC APIPreparedStatement和ResultSet类来实现。 3. 将数据Excel:遍历ResultSet对象并将其Excel工作簿文件的表格。 4. 保存Excel文件:使用Java的FileOutputStream类将Excel文档入磁盘文件。 二、导入Excel 1. 读取Excel文件:可以使用Apache POI的HSSFWorkbook类读取Excel文档对象。 2. 获取Excel表格数据:遍历Excel表格数据并使用Java对象将其存储在内存。 3. 连接MySQL数据库:使用JDBC API的Connection对象连接到MySQL数据库。 4. MySQL数据库:使用JDBC API的PreparedStatement类将Excel表格的数据MySQL数据库。 5. 关闭连接:最后,关闭JDBC连接,释放资源。 以上就是使用Java实现MySQL导入导出Excel的简单介绍。实现底层的代码量较大,对于代码的实现需要较丰富的Java编程经验,同时熟悉数据库Excel的数据类型操作更有优势。同时,对于需要大量数据从数据库导出或者大量数据导入需要优化数据处理方式、磁盘IO存储等操作方式,以达到效率更高的目的。 ### 回答3: Java实现MySQL导入导出Excel可以使用Apache POIMySQL Connector/J库进行开发。Apache POI是一种免费的Java API,可用于创建、读取和修改Microsoft Office格式的文档,而MySQL Connector/J则是一个Java库,可以用于连接MySQL数据库导出Excel 首先,需要在Java代码导入以下包: import java.io.FileOutputStream; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; 然后,需要创建一个工作簿和一张工作表,如下所示: Workbook workbook = new XSSFWorkbook(); Sheet sheet = workbook.createSheet("Sheet1"); 接下来,需要连接MySQL数据库并执行查询。查询结果将作为Excel文件的数据源。查询结果需要将以下内容Excel文件: ResultSetMetaData metaData = resultSet.getMetaData(); int columnCount = metaData.getColumnCount(); Row headerRow = sheet.createRow(0); for (int i = 1; i <= columnCount; i++) { String columnName = metaData.getColumnName(i); Cell cell = headerRow.createCell(i-1); cell.setCellValue(columnName); } int rowIndex = 1; while (resultSet.next()) { Row row = sheet.createRow(rowIndex++); for (int i = 1; i <= columnCount; i++) { Object value = resultSet.getObject(i); Cell cell = row.createCell(i-1); cell.setCellValue(value == null ? "" : value.toString()); } } 最后,需要将Excel文件保存到磁盘上: FileOutputStream outputStream = new FileOutputStream("D://excel.xlsx"); workbook.write(outputStream); outputStream.close(); 导入Excel 导入Excel导出Excel稍微复杂一些。首先,需要在Java代码导入以下包: import java.io.FileInputStream; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.util.Iterator; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; 然后,需要连接MySQL数据库并从Excel文件读取数据。读取数据的步骤如下: FileInputStream inputStream = new FileInputStream("D://excel.xlsx"); Workbook workbook = new XSSFWorkbook(inputStream); Sheet sheet = workbook.getSheetAt(0); Iterator<Row> iterator = sheet.iterator(); while (iterator.hasNext()) { Row currentRow = iterator.next(); Iterator<Cell> cellIterator = currentRow.iterator(); while (cellIterator.hasNext()) { Cell currentCell = cellIterator.next(); // 读取单元格的值并将其插入到MySQL数据库 } } 最后,需要将Excel文件关闭: workbook.close(); inputStream.close(); 在读取Excel数据之后,需要将数据插入到MySQL数据库。使用PreparedStatement对象可以将数据插入到MySQL。PreparedStatement对象包含插入参数的SQL语句,其变量用问号代替。然后,可以使用setString()和setInt()等方法将具体的值添加到PreparedStatement对象。最后,使用executeUpdate()方法执行SQL命令。以下是将Excel数据插入到MySQL的示例代码: String insertSql = "INSERT INTO my_table (column1, column2, column3) VALUES (?,?,?)"; PreparedStatement statement = conn.prepareStatement(insertSql); statement.setString(1, "value1"); statement.setInt(2, 123); statement.setString(3, "value3"); statement.executeUpdate(); 总之,Java实现MySQL导入导出Excel需要使用Apache POIMySQL Connector/J库。其导出Excel需要执行查询并将查询结果Excel文件,而导入Excel需要将Excel数据读取到Java代码并插入到MySQL。使用PreparedStatement对象可以安全地将Excel数据插入到MySQL
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值