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;
展开
 我来答
miho蓓
2013-10-16 · TA获得超过1089个赞
知道小有建树答主
回答量:984
采纳率:0%
帮助的人:538万
展开全部
String realPath = this.getHttpServletRequest().getRealPath("\\");

里面的 "\\" 符号可以改成 File.separator
java 中 获取的路径 在 windows和linux 下面的是不一致的 。
File.separator 就是 在不同的操作系统下面 显示相应的 斜杠

所以 开发过程中 用 File.separator 代替 “\” ,“/” 等 要通用一些。

还有在 路径拼接上面 也注意要使用 File.separator
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式