java导出excel功能,在unix下,文件名包含了路径。这个怎么解决。
HttpServletResponseres=ServletActionContext.getResponse();res.setContentType("applica...
HttpServletResponse res = ServletActionContext.getResponse(); res.setContentType("application/x-download"); String realPath = this.getHttpServletRequest().getRealPath("\\"); OutputStream os = res.getOutputStream(); BufferedInputStream bis = null; BufferedOutputStream bos = null;
try{ File file =null; if("1".equals(impType)){ String xlsName="empQuTaskJournaling"; //xls 文件名 List quList=this.empTaskJournalingService.getQuTaskJou(this.getLoginInfo(), info); file = this.empTaskJournalingService.exportList(realPath, quList, xlsName, "1"); } if("2".equals(impType)){ String xlsName="empPaiTaskJournaling"; //xls 文件名 List paiList=this.empTaskJournalingService.getPaiTaskJou(this.getLoginInfo(), info); file = this.empTaskJournalingService.exportList(realPath, paiList, xlsName, "2"); } String name = file.getName(); name=name.substring(name.lastIndexOf("_")+1, name.length()); name = new String(name.getBytes(),"iso8859-1"); res.setHeader("Content-Disposition", "attachment;filename=" + name); bis = new BufferedInputStream(new FileInputStream(file)); bos = new BufferedOutputStream(os); int b = 0; while ((b = bis.read()) != -1) { bos.write(b); }
}catch(Exception e){ e.printStackTrace(); throw e; }finally{ if (bis != null){bis.close();} if (bos != null) { bos.flush(); bos.close();} } os.close(); os.flush(); os.close(); os=null; 展开
try{ File file =null; if("1".equals(impType)){ String xlsName="empQuTaskJournaling"; //xls 文件名 List quList=this.empTaskJournalingService.getQuTaskJou(this.getLoginInfo(), info); file = this.empTaskJournalingService.exportList(realPath, quList, xlsName, "1"); } if("2".equals(impType)){ String xlsName="empPaiTaskJournaling"; //xls 文件名 List paiList=this.empTaskJournalingService.getPaiTaskJou(this.getLoginInfo(), info); file = this.empTaskJournalingService.exportList(realPath, paiList, xlsName, "2"); } String name = file.getName(); name=name.substring(name.lastIndexOf("_")+1, name.length()); name = new String(name.getBytes(),"iso8859-1"); res.setHeader("Content-Disposition", "attachment;filename=" + name); bis = new BufferedInputStream(new FileInputStream(file)); bos = new BufferedOutputStream(os); int b = 0; while ((b = bis.read()) != -1) { bos.write(b); }
}catch(Exception e){ e.printStackTrace(); throw e; }finally{ if (bis != null){bis.close();} if (bos != null) { bos.flush(); bos.close();} } os.close(); os.flush(); os.close(); os=null; 展开
1个回答
展开全部
String realPath = this.getHttpServletRequest().getRealPath("\\");
里面的 "\\" 符号可以改成 File.separator
java 中 获取的路径 在 windows和linux 下面的是不一致的 。
File.separator 就是 在不同的操作系统下面 显示相应的 斜杠
所以 开发过程中 用 File.separator 代替 “\” ,“/” 等 要通用一些。
还有在 路径拼接上面 也注意要使用 File.separator
里面的 "\\" 符号可以改成 File.separator
java 中 获取的路径 在 windows和linux 下面的是不一致的 。
File.separator 就是 在不同的操作系统下面 显示相应的 斜杠
所以 开发过程中 用 File.separator 代替 “\” ,“/” 等 要通用一些。
还有在 路径拼接上面 也注意要使用 File.separator
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询