转自:https://blog.csdn.net/linmengmeng_1314/article/details/83093908#commentsedit
本文参考此博客https://blog.csdn.net/qq_31170429/article/details/76473205?utm_source=blogxgwz1
稍作修改而来,记录一下。
下面开始进入正题:
1、下载需要的jar包:POI
Apache POI是Apache软件基金会的开源项目,POI提供API给Java程序对Microsoft Office格式档案读和写的功能。本例中主要使用其中的两个包:HSSF提供读写Microsoft Excel XLS(2003版本)格式档案的功能。XSSF提供读写Microsoft Excel OOXML XLSX(2007+版本)格式档案的功能。
首先进入POI首页:http://poi.apache.org/`, 之后点击download进入下载页。 下载解压,需要用到的的8个jar在下图
就是工具类了,有两个,ExcelUtil.java和ExcelBean.java,这两个类不用修改,可以直接拿来用。
package com.zih.utils;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;
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 ExcelUtil {
private final static String excel2003L =".xls"; //2003- 版本的excel
private final static String excel2007U =".xlsx"; //2007+ 版本的excel
/**
* 描述:获取IO流中的数据,组装成List>对象
* @param in,fileName
* @return
* @throws IOException
*/
public List> getBankListByExcel(InputStream in,String fileName) throws Exception{
List> list = null;
//创建Excel工作薄
Workbook work = this.getWorkbook(in,fileName);
if(null == work){
throw new Exception("创建Excel工作薄为空!");
}
Sheet sheet = null; //页数
Row row = null; //行数
Cell cell = null; //列数
list = new ArrayList>();
//遍历Excel中所有的sheet
// 将最大的列数记录下来
int lastCellNum = 0;
for (int i = 0; i < work.getNumberOfSheets(); i++) {
sheet = work.getSheetAt(i);
if(sheet==null){continue;}
//遍历当前sheet中的所有行
for (int j = sheet.getFirstRowNum(); j <= sheet.getLastRowNum(); j++) {
row = sheet.getRow(j);
if(row==null||row.getFirstCellNum()==j){continue;}
//遍历所有的列
List
package com.zih.po;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
public class ExcelBean implements java.io.Serializable {
private String headTextName;//列头(标题)名
private String propertyName;//对应字段名
private Integer cols;//合并单元格数
private XSSFCellStyle cellStyle;
public ExcelBean(){
}
public ExcelBean(String headTextName, String propertyName){
this.headTextName = headTextName;
this.propertyName = propertyName;
}
public ExcelBean(String headTextName, String propertyName, Integer cols) {
super();
this.headTextName = headTextName;
this.propertyName = propertyName;
this.cols = cols;
}
public String getHeadTextName() {
return headTextName;
}
public void setHeadTextName(String headTextName) {
this.headTextName = headTextName;
}
public String getPropertyName() {
return propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
}
public Integer getCols() {
return cols;
}
public void setCols(Integer cols) {
this.cols = cols;
}
public XSSFCellStyle getCellStyle() {
return cellStyle;
}
public void setCellStyle(XSSFCellStyle cellStyle) {
this.cellStyle = cellStyle;
}
}
然后需要在你的xxxServeice文件中添加接口,一个是读取文件内容之后的插入方法,一个是读取文件的方法。
public boolean insert(User user);
String ajaxUploadExcel(HttpServletRequest request,HttpServletResponse response) throws Exception;
实现类中才是需要根据实际修改的东西。
@Override
public boolean insert(User user) {
return userMapper.insert(user);
}
@Override
public String ajaxUploadExcel(HttpServletRequest request,
HttpServletResponse response) throws Exception {
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
MultipartFile file = multipartRequest.getFile("upfile");
if(file.isEmpty()){
try {
throw new Exception("文件不存在!");
} catch (Exception e) {
e.printStackTrace();
}
}
InputStream in =null;
try {
in = file.getInputStream();
} catch (IOException e) {
e.printStackTrace();
}
List> listob = null;
try {
listob = new ExcelUtil().getBankListByExcel(in,file.getOriginalFilename());
} catch (Exception e) {
e.printStackTrace();
}
//该处可调用service相应方法进行数据保存到数据库中,现只对数据输出
for (int i = 0; i < listob.size(); i++) {
List
User vo = new User();
/*这里是主键验证,根据实际需要添加,可要可不要,加上之后,可以对现有数据进行批量修改和导入
User j = null;
try {
j = userMapper.selectByPrimaryKey(Integer.valueOf(String.valueOf(lo.get(0))));
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
System.out.println("没有新增");
}*/
//vo.setUserId(Integer.valueOf(String.valueOf(lo.get(0)))); // 刚开始写了主键,由于主键是自增的,又去掉了,现在只有批量插入的功能,不能对现有数据进行修改了
vo.setUserTel(String.valueOf(lo.get(0))); // 表格的第一列 注意数据格式需要对应实体类属性
vo.setIntegral(Integer.valueOf(String.valueOf(lo.get(1)))); // 表格的第二列
//vo.setRegTime(Date.valueOf(String.valueOf(lo.get(2))));
//由于数据库中此字段是datetime,所以要将字符串时间格式:yyyy-MM-dd HH:mm:ss,转为Date类型
if (lo.get(2) != null && lo.get(2) != "") {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
vo.setRegTime(sdf.parse(String.valueOf(lo.get(2))));
}else {
vo.setRegTime(new Date());
}
System.out.println("从excel中读取的实体类对象:"+ vo);
userMapper.insert(vo);
/*if(j == null)
{
userMapper.insert(vo);
}
else
{
userMapper.updateByPrimaryKey(vo);
}*/
}
System.out.println("文件导入成功!");
return "文件导入成功!";
}
Controller类
@ResponseBody
@RequestMapping(value="fileUpload.do", produces = "application/text; charset=utf-8")
public String UploadExcel(HttpServletRequest request,HttpServletResponse response) throws Exception {
return userService.ajaxUploadExcel(request, response);
}
jsp页面,我这里采用的是form提交表单的方式,使用accept=".xls,.xlsx"对input的文件格式进行初步过滤
js判断:
之前使用ajax上传excel没有弄好,趁着今天有空,又改了试试,这里记录一下:
ajax文件上传用jquery ajaxFileUpload插件的话会非常方便,下载jquery ajaxFileUpload文件,然后在项目中引入
链接: https://pan.baidu.com/s/1RYqCwd1o0rmKbpbB4AC6Ig 提取码: g7zx
在页面中使用jquery ajaxFileUpload,先看看我们的html代码
//ajax提交excel
$(document).ready(function(){
$("#btn").click(function(){
if(checkData()){
$.ajaxFileUpload({
url:"user/ajaxUpload.do",
type:"POST",
dataType: "text",
fileElementId :"upfile",
success:function (data) {
//alert(data);
console.log(data);
$("#upfile").val("");
},
error:function(erro){
console.log(erro);
}
});
}
});
});
最后就是在java后台中实现excel文件上传的方法,用到了springmvc的MultipartFile类,形参upfile要和input中的name=“upfile” 属性一致,代码如下:
@RequestMapping(value="ajaxUpload.do", produces = "application/text; charset=utf-8")
public void ajaxUploadExcel(@RequestParam("upfile") MultipartFile file,HttpServletRequest request,HttpServletResponse response) throws Exception {
String msg = userService.ajaxUploadExcel(request, response);
response.setContentType("text/html;charset=UTF-8");//这些设置必须要放在getWriter的方法之前,
response.getWriter().print(msg);
}
至此两种方式实现excel批量导入数据到数据库就完成了,这里可以根据需要选择自己喜欢的方式,如果你有更好的方式,欢迎与我交流。
---------------------
作者:linmengmeng_1314
来源:CSDN
原文:https://blog.csdn.net/linmengmeng_1314/article/details/83093908
版权声明:本文为博主原创文章,转载请附上博文链接!