前端代码
$("#button-import").upload({
action:'${pageContext.request.contextPath}/staff/importXls',
name:'importFile',
onSubmit:function () {
var isImportUrl = "${pageContext.request.contextPath}/staff/isImport";
importExcWithprogress(isImportUrl,200,200);
},
onComplete:function (data) {
showCloseReload3(data);
}
});
/**
* 导出excel(带进度条)
* @param exportExcelUrl
* @param scanTime 检测是否导出完毕请求间隔 单位毫秒
* @param interval 进度条更新间隔(每次更新进度10%) 单位毫秒 导出时间越长 请设置越大 200 对应2秒导出时间
*/
function importExcWithprogress(isImportUrl,scanTime,interval){
if(scanTime<1000 || scanTime == undefined){
scanTime = 1000;
}
$.messager.progress({
title:'导出中,请等待...',
msg:'导出进度:',
interval: interval
});
$.messager.progress('bar').progressbar({
onChange: function(value){
if(value == 100){
$.messager.show({
title:'提示消息',
msg:'导入成功',
timeout:2000,
showType:'fade',
style:{
top:'45%'
}
});
$.messager.progress('close');
$("#grid").datagrid("reload");
}
}
});
var timer = setInterval(function(){
$.ajax({
url: isImportUrl+'?id='+Math.random(),
success: function(data){
if("true"==data){
$.messager.progress('bar').progressbar('setValue','100');
clearInterval(timer);
}
},
error:function(e){
alert(e.responseText);
}
});
}, scanTime);
}
后端通过是否完成导入在前端异步显示进度
@RequestMapping("/importXls")
@ResponseBody
public String importXls(MultipartFile importFile,HttpSession session) {
session.setAttribute("importedFlag", "false");
List<Staff> staffList = new ArrayList<Staff>();
//判断上传的文件是否符合格式和上传的文件是否存在
try {
POIUtil.checkFile(importFile);
} catch (IOException e1) {
//回传错误信息
return e1.getMessage();
}
try {
List<String[]> list = POIUtil.readExcel(importFile); // 这里得到的是一个集合,里面的每一个元素是String[]数组
for (Iterator iterator = list.iterator(); iterator.hasNext();) {
String[] strings = (String[]) iterator.next();
Staff staff = new Staff(strings[0], strings[1], strings[2], strings[3], strings[4], strings[5],
strings[6]);
System.out.println(staff.toString());
staffList.add(staff);
}
int influence = staffService.saveBatch(staffList);
session.removeAttribute("importedFlag");
//判断受影响的条数
if (0==influence) {
return "已经存在这些记录";
}
} catch (Exception e) {
return "插入失败";
}
return "true";
}
//提供上传是否完成的依据,ajax
@RequestMapping("/isImport")
@ResponseBody
public String isImport(HttpSession session){
Object importFlag = session.getAttribute("importedFlag");
if (importFlag != null) {
return "false";
}else{
return "true";
}
}
POIUtil是我自己写的excel导入的通用工具类,里面进行了数据的校验
/**
* 读入excel文件,解析后返回
*
* @param file
* @throws IOException
*/
public static List<String[]> readExcel(MultipartFile file) throws IOException {
// 获得Workbook工作薄对象
Workbook workbook = getWorkBook(file);
// 创建返回对象,把每行中的值作为一个数组,所有行作为一个集合返回
List<String[]> list = new ArrayList<String[]>();
if (workbook != null) {
// 获得当前sheet工作表
Sheet sheet = workbook.getSheetAt(0);
if (sheet != null) {
// 获得当前sheet的开始行
int firstRowNum = sheet.getFirstRowNum();
// 获得当前sheet的结束行
int lastRowNum = sheet.getLastRowNum();
// 循环除了第一行的所有行
for (int rowNum = firstRowNum + 1; rowNum <= lastRowNum; rowNum++) {
// 获得当前行
Row row = sheet.getRow(rowNum);
if (row == null) {
continue;
}
// 获得当前行的开始列
int firstCellNum = row.getFirstCellNum();
// 获得当前行的列数
int lastCellNum = row.getPhysicalNumberOfCells();
String[] cells = new String[row.getPhysicalNumberOfCells()];
// 循环当前行
for (int cellNum = firstCellNum; cellNum < lastCellNum; cellNum++) {
Cell cell = row.getCell(cellNum);
cells[cellNum] = getCellValue(cell);
}
list.add(cells);
}
// workbook.close();
}
}
return list;
}
// 检查文件
public static void checkFile(MultipartFile file) throws IOException {
// 判断文件是否存在
if (null == file) {
throw new FileNotFoundException("文件不存在!");
}
// 获得文件名
String fileName = file.getOriginalFilename();
// 判断文件是否是excel文件
if (!fileName.endsWith(xls) && !fileName.endsWith(xlsx)) {
throw new IOException(fileName + "不是excel文件");
}
}
public static String getCellValue(Cell cell) {
String cellValue = "";
if (cell == null) {
return cellValue;
}
// 把数字当成String来读,避免出现1读成1.0的情况
if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
cell.setCellType(Cell.CELL_TYPE_STRING);
}
// 判断数据的类型
switch (cell.getCellType()) {
case Cell.CELL_TYPE_NUMERIC: // 数字
cellValue = String.valueOf(cell.getNumericCellValue());
break;
case Cell.CELL_TYPE_STRING: // 字符串
cellValue = String.valueOf(cell.getStringCellValue());
break;
case Cell.CELL_TYPE_BOOLEAN: // Boolean
cellValue = String.valueOf(cell.getBooleanCellValue());
break;
case Cell.CELL_TYPE_FORMULA: // 公式
cellValue = String.valueOf(cell.getCellFormula());
break;
case Cell.CELL_TYPE_BLANK: // 空值
cellValue = "";
break;
case Cell.CELL_TYPE_ERROR: // 故障
cellValue = "非法字符";
break;
default:
cellValue = "未知类型";
break;
}
return cellValue;
}
具体的poiutil请前往这里下载(还包括导出的通用方法)
https://download.csdn.net/download/qq_37611061/11268320
mapper的写法,如果导入的数据存在就更新
<insert id="insertBatch" parameterType="java.util.List">
INSERT INTO staff (id, NAME, telephone, haspda, deltag, PASSWORD, station) VALUES
<foreach collection="list" item="item" separator=",">
(#{item.id},#{item.name},#{item.telephone},#{item.haspda},#{item.deltag},#{item.password},#{item.station})
</foreach>
ON DUPLICATE KEY UPDATE
id=VALUES(id), NAME=VALUES(NAME), telephone=VALUES(telephone), haspda=VALUES(haspda),
deltag=VALUES(deltag), PASSWORD=VALUES(PASSWORD), station=VALUES(station)
</insert>