码迷,mamicode.com
首页 > 其他好文 > 详细

下载附件

时间:2017-06-21 17:34:45      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:coder   文件   str   show   ade   servlet   ppi   param   new   

/**
	 * 
	 * 下载文件
	 * 
	 * @param id
	 */
	@RequestMapping(value="/downloadFile")
	public void downloadFile(String id, HttpServletRequest request, HttpServletResponse response) {
		//文件头信息
		FileInfo fileinfo = licBO.findFileInfo(id);
		if(fileinfo == null)
		{
			return;
		}
		String fileName = fileinfo.getFilename();
		String path = licBO.findFilePath(id)+fileinfo.getFiletype();
		response.setContentType("video/mpeg4; charset=utf-8");  
	        // 定义输出文件头  
		try {
			response.setHeader("Content-Disposition", "attachment;filename=\""  
			            + URLEncoder.encode(fileName,"UTF-8") + "\"");
	        File file = new File(path);  
	        int len = (int) file.length();  
	        byte[] buf = new byte[4096];  
	        FileInputStream fis = new FileInputStream(file);  
	        OutputStream out = response.getOutputStream();  
	        len = fis.read(buf);  
	        while (len != -1) {  
	            out.write(buf, 0, len);  
	            len = fis.read(buf);  
	        }  
	        out.flush();  
	        out.close();  
	        fis.close();  

		} catch (Exception e) {
			// TODO 自动生成 catch 块
			logger.error(this, e);
		}  
	}

  前台下载

window.top.showPic(URLS.filedownloadurl+‘?id=‘+uploadobj[parentxxbh]);

  

下载附件

标签:coder   文件   str   show   ade   servlet   ppi   param   new   

原文地址:http://www.cnblogs.com/jassy/p/7060719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!