首页 > 代码库 > 下载附件
下载附件
/** * * 下载文件 * * @param id */ @RequestMapping(value="http://www.mamicode.com/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]);
下载附件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。