快速业务通道

Struts1.x系列教程(15):使用DownloadAction类统计文件下载次数 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21
throws Exception { path = this.getServlet().getInitParameter("downloadPath"); filename = request.getParameter("file"); if (filename == null) { File file = new File(path); File[] files = file.listFiles(); response.setCharacterEncoding("GBK"); PrintWriter out = response.getWriter(); out.println("<ul>"); for (File f : files) // 开始向客户端浏览器输出文件列表 { if (f.isFile() && !f.isHidden()) { out.println("<li><a href=''" + request.getContextPath() + mapping.getPath()+ ".do?file=" + f.getName() + "''>" + f.getName() + "</a>&nbsp;&nbsp;<font color=''blue''>下载次数:" + String.valueOf(getDownloadCount(f.getName().hashCode()))+ "</color></li>"); } } out.println("</ul>"); return null; } else { // 当file参数存在时,则调用DownloadAction中的execute方法 // 实际上,在DownloadAction类中的execute方法调用了getStreamInfo方法 // 这条语句就相当于调用了getStreamInfo方法 return super.execute(mapping, form, request, response); } } }

【第3步】配置Struts动作类

在struts-config.xml文件中的<action-mappings>标签中加入了如下内容:

<action path="/download" scope="request" type="action.FileDownloadAction" />

【第4步】配置下载路径

在web.xml中找到一个叫action的Servlet,并在<servlet>标签中添加如下内容:

<init-param>    <param-name>downloadPath</param-name>    <param-value>D:\download\</param-value></init-param>

读取可以设置自已的下载目录,但下载目录必须以“"”结尾。

启动Tomcat后,在IE中输入如下的URL来测试程序:

http://localhost:8080/samples/download.do

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号