📄 file_download.jsp
字号:
<%
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -