博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ServletContext文件下载配置学习笔记
阅读量:6543 次
发布时间:2019-06-24

本文共 1378 字,大约阅读时间需要 4 分钟。

配置web.xml

DownServlet01
cn.downservlet.DownServlet01
filePath
d:\简历.pdf

java:

import java.io.File;import java.io.FileInputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.io.PrintWriter;import javax.servlet.ServletConfig;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class DownServlet01 extends HttpServlet {    public void doGet(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {        // NO1        ServletConfig config = this.getServletConfig();        String filePath = config.getInitParameter("filePath");        // NO2 头信息        File file = new File(filePath);        response.setHeader("content-disposition",                "attachment;filename=" + file.getName());        // NO3        InputStream is = new FileInputStream(file);        OutputStream os = response.getOutputStream();        byte[] buf = new byte[1024];        int len = 0;        while ((len = is.read(buf)) > 0) {            os.write(buf, 0, len);        }        is.close();        os.close();    }}

ServletContext文件下载配置学习笔记

转载于:https://blog.51cto.com/357712148/2104500

你可能感兴趣的文章
Oracle的FIXED_DATE参数
查看>>
PostgresSQL中的限制和级联删除
查看>>
NDK配置
查看>>
(转)@ContextConfiguration注解说明
查看>>
docker in centos error
查看>>
c# 线程同步: 详解lock,monitor,同步事件和等待句柄以及mutex
查看>>
[置顶] ※数据结构※→☆线性表结构(queue)☆============队列 顺序存储结构(queue sequence)(八)...
查看>>
Log4perl 的使用
查看>>
Linux 系统的单用户模式、修复模式、跨控制台登录在系统修复中的运用
查看>>
《http权威指南》阅读笔记(十)
查看>>
JQuery UI Widget Factory官方Demo
查看>>
Atlas揭秘 —— 绑定(Binding)
查看>>
install xcode_3.2.5_and_iOS_sdk_4.2 _final with mac lion10.7.3
查看>>
JavaScript权威指南(第6版)
查看>>
sql 自定義百分比轉換小數函數
查看>>
一起谈.NET技术,C# 委托,事件和Lambda表达式
查看>>
远离云计算风险三步走
查看>>
Silverlight 游戏开发小技巧:技能冷却效果2(Cool“.NET研究”down)2
查看>>
Mysql的优化一则
查看>>
An Introduction to Asynchronous Programming and Twisted (2)
查看>>