您的位置:首页 > 数据库

Excel表格内容导入数据库

2017-08-01 17:18 489 查看
前言:记录自己在工作中遇到的小问题,积少成多!因为是新手,有什么写的不好的地方还希望大家能够指出来。有什么更好的解决方法也希望大家能提出来,一起交流分享!(小弟在这里先谢谢大家)

首先我们需要一个文件上传的工具类:

package com.xy.cms.common;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
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;

public class ImportExecl {
/** 总行数 */

private int totalRows = 0;

/** 总列数 */

private int totalCells = 0;

/** 错误信息 */

private String errorInfo;

/** 构造方法 */

public ImportExecl() {

}

/**
*
* @描述:得到总行数
*
* @参数:@return
*
* @返回值:int
*/
public int getTotalRows() {

return totalRows;

}

/**
*
* @描述:得到总列数
*
* @参数:@return
*
* @返回值:int
*/
public int getTotalCells() {

return totalCells;

}

/**
*
* @描述:得到错误信息
*
* @参数:@return
*
* @返回值:String
*/
public String getErrorInfo() {

return errorInfo;

}

/**
*
* @描述:验证excel文件
*
* @参数:@param filePath 文件完整路径
*
* @参数:@return
*
* @返回值:boolean
*/
public boolean validateExcel(String filePath) {

/** 检查文件名是否为空或者是否是Excel格式的文件 */

if (filePath == null
|| !(WDWUtil.isExcel2003(filePath) || WDWUtil
.isExcel2007(filePath))) {

errorInfo = "文件名不是excel格式";

return false;

}

/** 检查文件是否存在 */

File file = new File(filePath);

if (file == null || !file.exists()) {

errorInfo = "文件不存在";

return false;

}

return true;

}

/**
*
* @描述:根据文件名读取excel文件
*
* @参数:@param filePath 文件完整路径
*
* @参数:@return
*
* @返回值:List
*/
public List<List<String>> read(String filePath) {
List<List<String>> dataLst = new ArrayList<List<String>>();
InputStream is = null;
try {
/** 验证文件是否合法 */
if (!validateExcel(filePath)) {
System.out.println(errorInfo);
return null;
}
/** 判断文件的类型,是2003还是2007 */
boolean isExcel2003 = true;
if (WDWUtil.isExcel2007(filePath)) {
isExcel2003 = false;
}
/** 调用本类提供的根据流读取的方法 */
File file = new File(filePath);
is = new FileInputStream(file);
dataLst = read(is, isExcel2003);
is.close();
} catch (Exception ex) {
ex.printStackTrace();
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
is = null;
e.printStackTrace();
}
}
}
/** 返回最后读取的结果 */
List<List<String>> dataLstS = dataLst;
return dataLstS;
}

/**
*
* @描述:根据流读取Excel文件
*
* @参数:@param inputStream
*
* @参数:@param isExcel2003
*
* @参数:@return
*
* @返回值:List
*/
public List<List<String>> read(InputStream inputStream, boolean isExcel2003) {

List<List<String>> dataLst = null;

try {

/** 根据版本选择创建Workbook的方式 */

Workbook wb = null;

if (isExcel2003) {
wb = new HSSFWorkbook(inputStream);
} els
aa99
e {
wb = new XSSFWorkbook(inputStream);
}
dataLst = read(wb);

} catch (IOException e) {

e.printStackTrace();

}

return dataLst;

}

/**
*
* @描述:读取数据
*
* @参数:@param Workbook
*
* @参数:@return
*
* @返回值:List<List<String>>
*/
private List<List<String>> read(Workbook wb) {

List<List<String>> dataLst = new ArrayList<List<String>>();

/** 得到第一个shell */

Sheet sheet = wb.getSheetAt(0);

/** 得到Excel的行数 */

this.totalRows = sheet.getPhysicalNumberOfRows();

/** 得到Excel的列数 */

if (this.totalRows >= 1 && sheet.getRow(0) != null) {

this.totalCells = sheet.getRow(0).getPhysicalNumberOfCells();
}

/** 循环Excel的行 */

for (int r = 0; r < this.totalRows; r++) {

Row row = sheet.getRow(r);
if (row == null) {
continue;
}

List<String> rowLst = new ArrayList<String>();

/** 循环Excel的列 */
for (int c = 0; c < this.getTotalCells(); c++) {

Cell cell = row.getCell(c);
String cellValue = "";

if (null != cell) {
// 以下是判断数据的类型
switch (cell.getCellType()) {
case HSSFCell.CELL_TYPE_NUMERIC: // 数字
cellValue = cell.getNumericCellValue() + "";
break;
case HSSFCell.CELL_TYPE_STRING: // 字符串
cellValue = cell.getStringCellValue();
break;

case HSSFCell.CELL_TYPE_BOOLEAN: // Boolean
cellValue = cell.getBooleanCellValue() + "";
break;

case HSSFCell.CELL_TYPE_FORMULA: // 公式
cellValue = cell.getCellFormula() + "";
break;

case HSSFCell.CELL_TYPE_BLANK: // 空值
cellValue = "";
break;
case HSSFCell.CELL_TYPE_ERROR: // 故障
cellValue = "非法字符";
break;
default:
cellValue = "未知类型";
break;
}
}

rowLst.add(cellValue);

}

/** 保存第r行的第c列 */

dataLst.add(rowLst);

}

return dataLst;

}

/**
*
* @描述:main测试方法
*
* @参数:@param args
*
* @参数:@throws Exception
*
* @返回值:void
*/
public static void main(String[] args) throws Exception {

ImportExecl poi = new ImportExecl();

// List<List<String>> list = poi.read("d:/aaa.xls");

List<List<String>> list = poi.read("D:/MyHome/Workspaces/Eclipse/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/hcms/excels/武汉光谷建设投资有限公司2015年建设项目申报表.xls");

if (list != null) {

for (int i = 0; i < list.size(); i++) {

System.out.print("第" + (i) + "行");

List<String> cellList = list.get(i);

for (int j = 0; j < cellList.size(); j++) {

// System.out.print(" 第" + (j + 1) + "列值:");

System.out.print(" " + cellList.get(j));

}
System.out.println();

}

}

}

}

class WDWUtil {

/**
*
* @描述:是否是2003的excel,返回true是2003
*
* @参数:@param filePath 文件完整路径
*
* @参数:@return
*
* @返回值:boolean
*/
public static boolean isExcel2003(String filePath) {

return filePath.matches("^.+\\.(?i)(xls)$");

}

/**
*
* @描述:是否是2007的excel,返回true是2007
*
* @参数:@param filePath 文件完整路径
*
* @参数:@return
*
* @返回值:boolean
*/
public static boolean isExcel2007(String filePath) {

return filePath.matches("^.+\\.(?i)(xlsx)$");

}

}


第二步就是jsp页面的编写
<body>
<div class="padding5">
<form action="${ctx}/admin/departmentAction!importEmpoyee.action" name="form1" method="post" id="frm" style="margin: 0" enctype="multipart/form-data">
<input name="successflag" id="successflag" value="${successflag}" type="hidden"/>
<input name="message" id="message" value="${message}" type="hidden"/>
<input type="hidden" name="departmentId" value="${departmentId }" />
<table >
<tr>
<td>上传文件:</td>
<td>
<input type="file" name="file" id="file"/>
</td>
<td> </td>
<td align="right">
<button onclick="return impContract();" type="button" id="add">导入</button>
<button onclick="return cancel();" type="button">取消</button>
</td>
</tr>
<tr>
<td colspan="4" align="left">
<span class="blue">
说明:<br>
1.<a href="${ctx }/excels/templet.xls" style="color:red">点击此处下载模板</a><br>
2.请先将Excel模板中示例信息删除<br>
3.按示例填写要导入的员工信息<br>
4.上传过程中不要多次提交或刷新页面<br>
</span>
</td>
</tr>
</table>
</form>
</div>
</body>示例图:

第三步我们就要得到上传的Excel表格,以及里面的数据:

public class DepartmentAction extends BaseAction{
private File file;
private String fileFileName;

public String importEmpoyee(){
try {
//得到项目的地址下面的excels目录,可以根据自己的实际情况修改
String path = ServletActionContext.getServletContext().getRealPath("/excels");
//找到上传的文件
File upload = new File(path+File.separator+fileFileName);
FileUtil.copy(file, upload);
ImportExecl poi = new ImportExecl();
//得到表格中的数据
List<List<String>> list = poi.read(path+File.separator+fileFileName);
/******这里只需要循环的取出数据,并且保存的数据库即可*******/
this.message = "保存成功";
request.setAttribute("successflag", "1");
} catch (IOException e) {
message = e.getMessage();
logger.error(e.getMessage(), e);
}
return "import";
}

public File getFile() {
return file;
}

public void setFile(File file) {
this.file = file;
}

public String getFileFileName() {
return fileFileName;
}

public void setFileFileName(String fileFileName) {
this.fileFileName = fileFileName;
}

}


这里需要用到5个jar包

1、poi-scratchpad-3.0-alpha3-20061212

2、poi-3.8-20120326

3、poi-contrib-3.0-alpha3-20061212

4、poi-ooxml-3.8-20120326

5、poi-ooxml-schemas-3.8-20120326
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: