打包成.zip,,,客户端一般就会下载的...呵呵...

解决方案 »

  1.   

    to: doway(john) 
    那为什么别的文件都可以下载,就是.html/.xml/.xsl/.txt都不可以呢?直接就打开了,怎么回事?
    to: woolceo(Wool)
    打包成.zip,,,……
    不懂您的意思,你是说我的文件还要打包成zip,太麻烦了吧!记得我以前做过下载htm的代码,找不到了现在
      

  2.   

    in Action:
    String contentType = "application/octet-stream";
    String dispositionType = "attachment"; //for download or "inline" for displayresponse.setContentType(contentType);
    response.setHeader("Content-Disposition", dispositionType + "; filename=\"" + fileName + "\"");
    //如果可以得到文件尺寸的话
    response.setContentLength((int)file.length());//读取文件或者直接生成输出到客户端,略
    ...//最后return null
    return null;