设为首页收藏本站

就爱编程论坛

 找回密码
 注册

人人连接登陆

无需注册,直接登录

用新浪微博连接

一步搞定

QQ登录

只需一步,快速开始

查看: 1319|回复: 3
打印 上一主题 下一主题

JSP禁用迅雷等下载工具下载文件,强制使用右键另存功能下载文件 [复制链接]

Rank: 9Rank: 9Rank: 9

  • TA的每日心情
    无聊
    2025-5-27 03:37:20
  • 签到天数: 366 天

    [LV.9]以坛为家II

    论坛先锋 学习至圣 荣誉成员 论坛元老 活跃之星 终极领袖

    我玩的应用:

    跳转到指定楼层
    楼主
    发表于 2011-4-26 07:04:12 |只看该作者 |倒序浏览
    * 实现文件另存功能
    *
    * @param text
    * 文件内容
    * @param fileName
    * 文件名称
    * @return
    */
    protected String renderFile(String text, String fileName)
    throws IOException
    {
    response.addHeader("Content-Disposition", "attachment; filename="
    + fileName);
    response.setContentType("application/octet-stream");
    response.setCharacterEncoding("GB2312");
    response.getWriter().write(text);
    response.flushBuffer();
    response.getWriter().close();
    return null;
    }
    下载的action:
    /** *//**
    * 提供下载的方法
    * @return
    */
    public String down()
    {
    String dir = getFullPath() + "/upload/file/";
    try
    {
    if (!FileUtils.exists(dir))
    {
    new File(dir).mkdirs();
    }
    Random r = new Random(System.currentTimeMillis());
    Integer randomInt = r.nextInt();
    this.renderFile("test content:" + randomInt,randomInt + ".txt");
    }
    catch (IOException e)
    {
    e.printStackTrace();
    this.renderText(e.getMessage());
    }
    return null;
    }
    页面链接调用:
    <a href="${ctx}/va/va!down.do" >下载</a>
    分享到: QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    分享分享0 收藏收藏0 支持支持0 反对反对0 分享到人人 转发到微博
    [img=http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=fRUcHhYWGAQ9GxIFEBwUEVMeEhA]http://rescdn.qqmail.com/zh_CN/htmledition/images/function/qm_open/ico_mailme_02.png[/img]

    使用道具 举报

    Rank: 2

    升级 
     
    50%

    该用户从未签到

    沙发
    发表于 2011-9-9 17:28:49 |只看该作者
    感激涕零,谢谢楼主的好贴













    使用道具 举报

    Rank: 3Rank: 3

    升级 
     
    4.33%

    该用户从未签到

    板凳
    发表于 2011-10-11 12:31:56 |只看该作者

    使用道具 举报

    Rank: 3Rank: 3

    升级 
     
    52.33%

    该用户从未签到

    地板
    发表于 2011-10-18 15:04:08 |只看该作者

    使用道具 举报

    您需要登录后才可以回帖 登录 | 注册 人人连接登陆

    晴云孤魂's Blog|就爱编程搜帖|手机版|Archiver|就爱编程论坛     

    GMT+8, 2025-7-1 19:47 , Processed in 0.179347 second(s), 32 queries .

    Powered by Discuz! X2

    © 2001-2011 Comsenz Inc.

    回顶部