针对于文件的下载,我们有很多种实现方式。业务场景是这样子的,要实现Excel文件的导入和导出功能,问题对于java的POI操作没有问题,所以实现文件的下载就相对简单,只需要从数据库取出相关的数据,针对数据的结果集进行相关的转换,实现自己想要的输出结果,但对于导入的话实现起来就会遇到跟中各样的小问题,问题1:导入的格式不对。问题2:导入的数据类型不对,就像windows的文本编辑框一样,自带有系统默认的编码格式,excel也有自己单元格内数据类型的相应格式,,问题3:导入的数据长度问题。问题4:导入需要的数据模板。所以针对这样的问题,我们需要给用户提供相应的下载和导入模板。一共客户使用
一下是我个人实现的两种导入方式,直接上代码,我会针对代码的两种实现方式进行优缺点的对比,选择适合自己项目运行的代码:
代码1:针对云java包下的文件模板下载:
/**
* 下载导入模板
* @param request
* @param searchCondition
* @param response
* @author zhaieryuan
* @date 2017年12月25日 下午2:24:20
*/
@RequestMapping("/downloadTemplate")
public void downloadTemplate(HttpServletRequest request,HttpServletResponse response){
String fileDownName ="导入模板.xlsx";
logger.debug("下载模板文件名称:"+fileDownName);
try {
InputStream fis = StoreController.class.getResourceAsStream("/com/zhaiugo/dl/store/controller/importTemplate.xls");
byte[] buffer = new byte[fis.available()];
fis.read(buffer);
fis.close();
response.reset();
response.setContentType("bin");
String fileNames = fileDownName;
String agent = request.getHeader("USER-AGENT");
String codedfilename = "";
if (null != agent && -1 != agent.indexOf("MSIE") || null != agent && -1 != agent.indexOf("Trident")) {// ie
String name = java.net.URLEncoder.encode(fileNames, "UTF8");
codedfilename = name;
} else if (null != agent && -1 != agent.indexOf("Mozilla")) {// 火狐,chrome等
codedfilename = new String(fileNames.getBytes("UTF-8"), "iso-8859-1");
}
response.addHeader("Content-Disposition", "attachment; filename=\"" + codedfilename + "\"");
response.getOutputStream().write(buffer);
} catch (IOException e) {
e.printStackTrace();
logger.debug("下载导入模板"+e.getMessage(), e);
}
}
代码2:针对于web项目的根目录和静态文件目录的模板下载
/**
* 下载导入模板
* @param request
* @param searchCondition
* @param response
* @author zhaieryuan
* @date 2017年12月25日 下午2:24:20
*/
@RequestMapping("/downloadTemplate")
public void downloadTemplate(HttpServletRequest request,HttpServletResponse response) throws Exception{
request.setCharacterEncoding("UTF-8");
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
String importTemplate = "importTemplate.xls";
//获取项目根目录
String ctxPath = request.getSession().getServletContext()
.getRealPath("");
//获取下载文件露肩
String downLoadPath = ctxPath+"/upload/"+importTemplate;
//获取文件的长度
long fileLength = new File(downLoadPath).length();
//设置文件输出类型
response.setContentType("application/octet-stream");
response.setHeader("Content-disposition", "attachment; filename="
+ new String(importTemplate.getBytes("utf-8"), "ISO8859-1"));
//设置输出长度
response.setHeader("Content-Length", String.valueOf(fileLength));
//获取输入流
bis = new BufferedInputStream(new FileInputStream(downLoadPath));
//输出流
bos = new BufferedOutputStream(response.getOutputStream());
byte[] buff = new byte[2048];
int bytesRead;
while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
bos.write(buff, 0, bytesRead);
}
//关闭流
bis.close();
bos.close();
}