maven

<!--POI-->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.16</version>
</dependency> <dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.14</version>
</dependency> <dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
thymeleaf
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Show User</title>
</head>
<body>
<div >
<table>
<th:block>
<form id="file_form" action="http://localhost:8080/batchImport"
enctype="multipart/form-data" method="post">
            <input type="file" name="file" id="file_input">
            <input type="submit" value="导入数据" class="file">
</form> 
<a href="http://localhost:8080/batchExport" >导出数据</a>
</th:block>
</table>
 
</div>
</body>
</html>
ExcelImportUtil
public class ExcelImportUtil {

    /** @描述:是否是2003的excel,返回true是2003 */
public static boolean isExcel2003(String filePath) {
return filePath.matches("^.+\\.(?i)(xls)$");
} /**@描述:是否是2007的excel,返回true是2007 */
public static boolean isExcel2007(String filePath) {
return filePath.matches("^.+\\.(?i)(xlsx)$");
} }
ZipCompress
public class ZipCompress {
/**
* 目的地Zip文件
*/
private String zipFileName;
/**
* 源文件(待压缩的文件或文件夹)
*/
private String sourceFileName; public ZipCompress(String zipFileName,String sourceFileName)
{
this.zipFileName=zipFileName;
this.sourceFileName=sourceFileName;
} public void zip() throws Exception
{
System.out.println("压缩中...");
File file = new File(zipFileName);
if(!file.exists()){
File fileParent = file.getParentFile();
if(!fileParent.exists()){
fileParent.mkdirs();
}
}
//创建zip输出流
ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFileName)); //创建缓冲输出流
BufferedOutputStream bos = new BufferedOutputStream(out); File sourceFile = new File(sourceFileName); //调用函数
compress(out,bos,sourceFile,sourceFile.getName()); bos.close();
out.close();
System.out.println("压缩完成"); } public void compress(ZipOutputStream out,BufferedOutputStream bos,File sourceFile,String base) throws Exception
{
//如果路径为目录(文件夹)
if(sourceFile.isDirectory())
{ //取出文件夹中的文件(或子文件夹)
File[] list = sourceFile.listFiles(); //如果文件夹为空,则只需在目的地zip文件中写入一个目录进入点
if(list.length==0)
{
System.out.println(base+"/");
out.putNextEntry( new ZipEntry(base+"/") );
}
else//如果文件夹不为空,则递归调用compress,文件夹中的每一个文件(或文件夹)进行压缩
{
for(int i=0;i<list.length;i++)
{
compress(out,bos,list[i],base+"/"+list[i].getName());
}
}
}
else//如果不是目录(文件夹),即为文件,则先写入目录进入点,之后将文件写入zip文件中
{
out.putNextEntry( new ZipEntry(base) );
FileInputStream fos = new FileInputStream(sourceFile);
BufferedInputStream bis = new BufferedInputStream(fos); int tag;
System.out.println(base);
//将源文件写入到zip文件中
while((tag=bis.read())!=-1)
{
bos.write(tag);
}
bis.close();
fos.close(); }
}
}
FileController
@Controller
public class FileController { @Autowired
private BatchService batchService; @RequestMapping(value = "/file")
public String file(){
return "file.html";
} @RequestMapping(value = "/batchImport")
public String batchImport(MultipartFile file) {
batchService.batchImport(file);
return "forward:/file";
} @RequestMapping(value = "/batchExport")
public void batchExport(HttpServletResponse response) {
batchService.batchExport(response);
}
}
BatchService
@Service
@Transactional(propagation = Propagation.REQUIRED,isolation = Isolation.DEFAULT,timeout=36000,rollbackFor=Exception.class)
public class BatchService { public static final Logger logger = LoggerFactory.getLogger(BatchService.class); @Autowired
private BatchMapper batchMapper;
/**
* 导出数据
* @return
*/
public int batchExport(HttpServletResponse response) {
int result = 1;
HSSFWorkbook wb = new HSSFWorkbook();
logger.info("开始");
HSSFSheet sheet = wb.createSheet("信息表");
HSSFCellStyle style = wb.createCellStyle(); style.setAlignment(HorizontalAlignment.CENTER);
HSSFFont font = wb.createFont();
font.setFontHeightInPoints((short)10);
font.setFontName("宋体");
style.setFont(font); /**设置单元格格式为文本格式*/
HSSFDataFormat format = wb.createDataFormat();
style.setDataFormat(format.getFormat("@")); HSSFRow row = sheet.createRow(0);
row.createCell(0).setCellValue("用户信息");
row.createCell(1);
row.createCell(2);
row.createCell(3).setCellValue("车信息");
row.createCell(4);
row.createCell(5);
sheet.addMergedRegion(new CellRangeAddress(
0,0,0,2
));
sheet.addMergedRegion(new CellRangeAddress(
0,0,3,5
));
HSSFRow row1 = sheet.createRow(1);
row1.createCell(0).setCellValue("id");
row1.createCell(1).setCellValue("name");
row1.createCell(2).setCellValue("age");
row1.createCell(3).setCellValue("cid");
row1.createCell(4).setCellValue("carName");
row1.createCell(5).setCellValue("carPrice");
List<BatchData> batchData = batchMapper.selectBatchData();
logger.info(JSONObject.toJSONString(batchData));
for (int i = 1; i <= batchData.size(); i++) {
HSSFRow rowX = sheet.createRow(i + 1);
BatchData dataX = batchData.get(i - 1);
/**
* BatchData的字段设置为String类型则导出数据为文本类型,免得设置cell格式
*/
rowX.createCell(0).setCellValue(dataX.getId());
rowX.createCell(1).setCellValue(dataX.getName());
rowX.createCell(2).setCellValue(dataX.getAge());
rowX.createCell(3).setCellValue(dataX.getCid());
rowX.createCell(4).setCellValue(dataX.getCarName());
rowX.createCell(5).setCellValue(dataX.getCarPrice().setScale(2,BigDecimal.ROUND_UP).toString()
);
}
HSSFRow row00 = sheet.getRow(0);
for (Cell cell : row00) {
cell.setCellStyle(style);
}
HSSFRow row01 = sheet.getRow(1);
for (Cell cell : row01) {
cell.setCellStyle(style);
}
FileOutputStream out = null;
FileInputStream fis = null;
BufferedInputStream bis = null;
String filePath = "D:/dabFile/";
String fileZipPath = "D:/dabZipFile/";
try {
//创建excel文件
File path = new File(filePath);
if(!path.exists()){
path.mkdirs();
}
Integer random = new Random().nextInt(1000);
String fileName = "dab"+System.currentTimeMillis()+random;
out = new FileOutputStream(filePath+fileName+".xls");
wb.write(out);
//压缩为zip文件
String fileZipName = "dab"+System.currentTimeMillis()+random;
ZipCompress zipCom = new ZipCompress(fileZipPath+fileZipName+".zip",filePath+fileName+".xls");
zipCom.zip();
//下载zip文件
File file = new File(fileZipPath+fileZipName+".zip");
if(file.exists()){
logger.info("下载开始.....");
// 设置强制下载不打开
response.setContentType("application/force-download");
// 设置文件名
response.addHeader("Content-Disposition", "attachment;fileName=" + fileZipName+".zip"); byte[] buffer = new byte[1024];
fis = new FileInputStream(file);
bis = new BufferedInputStream(fis);
OutputStream os = response.getOutputStream();
int i = bis.read(buffer);
logger.info("开始读取.."+i);
while (i != -1) {
os.write(buffer, 0, i);
i = bis.read(buffer);
logger.info("读取中.."+i);
}
logger.info("下载成功....."); }else{
logger.info("下载失败!");
}
} catch (Exception e) {
logger.error("接口内部错误",e);
throw new MyException("接口内部错误",e);
}finally {
logger.info("进入finally代码块");
if(out != null){
try {
out.close();
logger.info("关闭out输出流");
} catch (IOException e) {
logger.error("接口内部错误out",e);
throw new MyException("接口内部错误out",e);
}
}
if (bis != null) {
try {
bis.close();
logger.info("关闭bis输出流");
} catch (IOException e) {
logger.error("接口内部错误bis",e);
throw new MyException("接口内部错误bis",e);
}
}
if (fis != null) {
try {
fis.close();
logger.info("关闭fis输出流");
} catch (IOException e) {
logger.error("接口内部错误fis",e);
throw new MyException("接口内部错误fis",e);
}
}
//删除数据文件
deleteDir(fileZipPath);
deleteDir(filePath);
}
return result;
} private boolean deleteDir(String dir) {
File file = new File(dir);
boolean delete ;
if (file.isDirectory()) {
String[] children = file.list();
if(children.length>0){
/**递归删除目录中的子目录下*/
for (int i=0; i<children.length; i++) {
boolean success = deleteDir(file.getPath()+"/"+children[i]);
if (!success) {
return false;
}
}
}
delete = file.delete();
logger.info("删除目录"+delete);
}else {
delete = file.delete();
logger.info("删除文件"+delete);
}
return delete;
} public void batchImport(MultipartFile file) {
try {
if(!file.isEmpty()){
//获取文件名
String fileName = file.getOriginalFilename();
logger.info("上传的文件名为:" + fileName);
// 获取文件的后缀名
String suffixName = fileName.substring(fileName.lastIndexOf("."));
logger.info("文件的后缀名为:" + suffixName);
// 设置文件存储路径
String filePath = "D:/dabImport/";
String path = filePath + fileName;
File dest = new File(path);
// 检测是否存在目录
if (!dest.getParentFile().exists()) {
dest.getParentFile().mkdirs();// 新建文件夹
}
// 文件写入
file.transferTo(dest);
logger.info("上传文件成功!");
boolean excel2003 = ExcelImportUtil.isExcel2003(fileName);
boolean excel2007 = ExcelImportUtil.isExcel2007(fileName);
if(!excel2003 && !excel2007){
logger.info("上传文件格式不正确");
throw new MyException("上传文件格式不正确");
}
FileInputStream fis = new FileInputStream(dest);
Workbook wb = null;
if (excel2003) {
wb = new HSSFWorkbook(fis);
} else { wb = new XSSFWorkbook(fis);
}
Sheet sheet = wb.getSheetAt(0);
for (int i = 2; i < sheet.getLastRowNum(); i++) {
Row row = sheet.getRow(i);
if(row == null){
continue;
}
double id0 = row.getCell(0).getNumericCellValue();
Integer id = Integer.valueOf(Double.valueOf(id0).intValue());
String name = row.getCell(1).getStringCellValue();
double age0 = row.getCell(2).getNumericCellValue();
Integer age = Integer.valueOf(Double.valueOf(age0).intValue());
User user = User.builder().name(name).age(age).build();
int u = batchMapper.addUser(user);
logger.info("导入user"+(u>0)); String carName = row.getCell(4).getStringCellValue();
String carPrice0 = row.getCell(5).getStringCellValue();
BigDecimal carPrice = BigDecimal.valueOf(Double.valueOf(carPrice0));
Car car = Car.builder().uid(id).carName(carName).carPrice(carPrice).build();
int c = batchMapper.addCar(car);
logger.info("导入car"+(c>0)); }
}else{
logger.info("上传文件为空!");
}
} catch (Exception e) {
logger.info("上传文件接口内部异常",e);
}
}
}

java导入导出excel的更多相关文章

  1. java导入导出excel常用操作小结及简单示例

    POI中常用设置EXCEL的操作小结: 操作excel如下 HSSFWorkbook wb = new HSSFWorkbook();  //创建一个webbook,对应一个Excel文件 HSSFS ...

  2. 【转载】Java导入导出excel

    转自:https://blog.csdn.net/jerehedu/article/details/45195359 目前,比较常用的实现Java导入.导出Excel的技术有两种Jakarta POI ...

  3. java导入导出Excel文件

    package poi.excel; import java.io.IOException; import java.io.InputStream; import java.io.OutputStre ...

  4. Java利用POI导入导出Excel中的数据

         首先谈一下今天发生的一件开心的事,本着一颗android的心我被分配到了PB组,身在曹营心在汉啊!好吧,今天要记录和分享的是Java利用POI导入导出Excel中的数据.下面POI包的下载地 ...

  5. .Net MVC 导入导出Excel总结(三种导出Excel方法,一种导入Excel方法) 通过MVC控制器导出导入Excel文件(可用于java SSH架构)

    .Net MVC  导入导出Excel总结(三种导出Excel方法,一种导入Excel方法) [原文地址] 通过MVC控制器导出导入Excel文件(可用于java SSH架构)   public cl ...

  6. 导入导出Excel的Java工具类ExcelUtil

    在编写ExcelUtil之前,在网上查了一些资料.java中用来处理Excel的第三方开源项目主要就是POI和JXL.poi功能强大,但是比较耗资源,对于大数据量的导入导出性能不是太好:jxl功能简单 ...

  7. Java基于注解和反射导入导出Excel

    代码地址如下:http://www.demodashi.com/demo/11995.html 1. 构建项目 使用Spring Boot快速构建一个Web工程,并导入与操作Excel相关的POI包以 ...

  8. java使用户EasyExcel导入导出excel

    使用alibab的EasyExce完成导入导出excel 一.准备工作 1.导包 <!-- poi 相关--> <dependency> <groupId>org. ...

  9. 导入导出Excel工具类ExcelUtil

    前言 前段时间做的分布式集成平台项目中,许多模块都用到了导入导出Excel的功能,于是决定封装一个ExcelUtil类,专门用来处理Excel的导入和导出 本项目的持久化层用的是JPA(底层用hibe ...

随机推荐

  1. 操作系统-Windows操作系统的线程调度了解这些

    Windows操作系统支持内核级线程,调度单位是线程,它采用基于动态优先级的,抢占式调度,并结合时间配额的调整来完成调度 一.几个前提知识点 就绪线程按优先级进入相应的就绪队列 系统总是选择优先级最高 ...

  2. 7_1.springboot2.x启动配置原理_1.创建SpringApplication对象

    环境准备 springboot2.1.9.idea2019. pom.xml 解析 几个重要的事件回调机制 配置在META-INF/spring.factories ApplicationContex ...

  3. netty DelimiterBasedFrameDecoder

    netty server EchoServer package com.zhaowb.netty.ch5_1; import io.netty.bootstrap.ServerBootstrap; i ...

  4. netty 使用Java序列化

    SubscribeReq package com.zhaowb.netty.ch7_1; import java.io.Serializable; public class SubscribeReq ...

  5. ps photoshop

    PS-前端切图教程(切jpg图和切png图) 参考线显示和隐藏:ctrol+h alt+v+e或者打开标尺然后从点击标尺就能拖拽出来,删除也是拖到标尺附近就删除 显示.隐藏标尺:ctrol+R 显示网 ...

  6. (转)Windows中杀死占用某个端口的进程

    启动tomcat时候,控制台报错,发现是端口占用,于是寻找方法关闭对应的程序. 从网上找了好久,尝试之后,发现不行.开始自己尝试,终于,成功的将占用端口的进程杀掉.在此记录下过程(以8081端口为例) ...

  7. [记]Cordova安装插件选择插件版本

    在项目中可以使用 cordova plugin add [PLUGIN_ID] 這个命令安装一个cordova插件,这个命令好像是安装插件的最新版本.当需要通过cordova下载这个插件一个特定的版本 ...

  8. 多项式模板&题目整理

    注:多项式的题目,数组应开:N的最近2的整数次幂的4倍. 多项式乘法 FFT模板 时间复杂度\(O(n\log n)\). 模板: void FFT(Z *a,int x,int K){ static ...

  9. ansible 安装及基本使用

    1.yum 安装 yum -y install epel-releaseyum -y install ansible ansible 配置秘钥 ssh-keygen -t rsa #直接回车不用设置密 ...

  10. 服务器重启,自动重启httpd

    1. 手动重启 cd http ll cd /etc/httpd/   ll service httpd restart 2. 查看服务器内存使用情况 df -h 3. 自动重启 cat /etc/i ...