主页 > 知识库 > JSP下载服务器文件的方法

JSP下载服务器文件的方法

热门标签:团购网站 银行业务 科大讯飞语音识别系统 阿里云 服务器配置 Linux服务器 电子围栏 Mysql连接数设置

本文实例讲述了JSP下载服务器文件的方法。分享给大家供大家参考,具体如下:

%@page import="java.io.FileInputStream"%>
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
%@page language="java" contentType="text/html; charset=UTF-8"%>
%@page import="com.ecc.emp.core.Context" %>
%@page import="java.io.File" %>
%@ include file="http://www.xxxx.com/head.jsp"%>
%
  boolean loadFlag = false;
  ServletOutputStream ou = null;
  FileInputStream fis = null;
  try{  
    Context context=(Context)request.getAttribute("context");
    String accountFilePath = (String)context.getDataValue("accountFilePath");
    //String accountFilePath ="E:/ComeBack/Acc_BOS_CM/WebContent/upload/product/1336873410414custormerStatement.txt";
    //String accountFileName = (String)context.getDataValue("accountFileName");
    String displayFileName = (String)context.getDataValue("displayFileName");
    //String displayFileName ="custormerStatement.txt";
    String fullPath =accountFilePath;
    response.reset();
      response.setContentType("charset=UTF-8");
    response.setContentType("text/HTML");
    //response.setContentType("application/vnd.ms-excel");    
    String filename = new String(displayFileName.getBytes("gb2312"), "ISO8859-1");
    response.setHeader("Content-Disposition","attachment; filename=" + filename);
    //解决HTTPS不能下载的问题
    response.setHeader("Cache-Control","public");    
    ou = response.getOutputStream();
    File file = new File(fullPath);
    fis = new FileInputStream(file);    
    try {
      if (fis != null) {
        int filelen = fis.available();
        byte a[] = new byte[filelen];
        fis.read(a);
        ou.write(a);
        ou.flush();
      }      
      loadFlag=true;
    } catch (Exception e) {
      System.out.println("Excel is not exist!");
    }
    out = pageContext.pushBody();
  }catch(Exception e){
    e.printStackTrace();
  }finally{
    try {
      fis.close();
      ou.close();
      ou = null;
      response.flushBuffer();
    } catch (Exception e) {
      // TODO 自动生成 catch 块
      e.printStackTrace();
    }
  }
%>

希望本文所述对大家JSP程序设计有所帮助。

您可能感兴趣的文章:
  • JSP实现远程文件下载保存到服务器指定目录中的方法
  • jsp实现从服务器下载xls文件到客户端的方法
  • jsp实现Servlet文件下载的方法
  • JSP文件下载功能的4种方法
  • JSP response对象实现文件下载的两种方式
  • jsp实现文件上传下载的程序示例
  • jsp 文件下载示例代码
  • jsp文件上传与下载实例代码
  • Jsp页面实现文件上传下载类代码
  • 用JSP下载word文件(不会直接用IE打开)
  • JSP实现从不同服务器上下载文件的方法

标签:蚌埠 衢州 广元 枣庄 衡水 大理 萍乡 江苏

巨人网络通讯声明:本文标题《JSP下载服务器文件的方法》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266