file_download.jsp

来自「一个用jsp写的完整的论坛源代码」· JSP 代码 · 共 16 行

JSP
16
字号
<%
	com.bcxy.db.JdbcWrapper jw = new com.bcxy.db.JdbcWrapper();
	String rDownFile = com.bcxy.bbs.util.ParamUtil.getString(request, "filename", "");
	String downFile = "/WEB-INF/upload/" + rDownFile;
	//
	try{
		com.bcxy.fileupload.FileDownload fd = new com.bcxy.fileupload.FileDownload();
		fd.initialize(pageContext);
		fd.setContentDisposition(null);
		fd.downloadFile(downFile);
		jw.executeUpdate("update " + com.bcxy.bbs.util.BBSConst.TABLE_FILEUPLOAD + " set downcount=downcount+1 where name='"+rDownFile+"'");
	}catch(Exception e){
		e.printStackTrace();
		out.println("下载出错,请与管理员联系!");
	}
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?