java web 文件上传
2019-10-16 08:17:10来源:博客园 阅读 ()
java web 文件上传
文件资源位置:web/img下
HTML页面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>学习文件下载</title>
</head>
<body>
<h1>使用超链接</h1>
<a href="/filedown/img/abc.png">图片1</a>
<a href="/filedown/img/aa.flv">视频1</a>
<a href="/filedown/img/奥尼尔.gif">图片2</a>
<hr/>
<a href="/filedown/downServlet?filename=abc.png">图片1</a>
<a href="/filedown/downServlet?filename=aa.flv">视频1</a>
<a href="/filedown/downServlet?filename=奥尼尔.gif">中文图片2</a>
</body>
</html>
Servlet 类
@WebServlet("/downServlet")
public class FileDownServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//获取请求参数,文件名称
String filename = request.getParameter("filename");
ServletContext context = this.getServletContext();
//找到服务器文件的真实路径
String realPath = context.getRealPath("/img/" + filename);
//使用字节流关联
FileInputStream fis=new FileInputStream(realPath);
/* 设置响应头
响应头类型:content-type
响应头打开方式:content-disposition
*/
String mimeType = context.getMimeType(filename);
response.setHeader("content-type",mimeType);
//获取user-agent请求头
String agent = request.getHeader("user-agent");
//使用工具类方法编码文件名即可
filename = DownLoadUtils.getFileName(agent, filename);
response.setHeader("content-disposition","attachment;filename="+filename);
//将输入流的数据写出到输出流中
ServletOutputStream sos = response.getOutputStream();
byte[] bytes=new byte[1024*8];
int len=0;
while ((len=fis.read(bytes))!=-1){
sos.write(bytes,0,len);
}
fis.close();
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request,response);
}
}
util工具类:对文件名编码
public class DownLoadUtils {
public static String getFileName(String agent, String filename) throws UnsupportedEncodingException {
if (agent.contains("MSIE")) {
// IE浏览器
filename = URLEncoder.encode(filename, "utf-8");
filename = filename.replace("+", " ");
} else if (agent.contains("Firefox")) {
// 火狐浏览器
BASE64Encoder base64Encoder = new BASE64Encoder();
filename = "=?utf-8?B?" + base64Encoder.encode(filename.getBytes("utf-8")) + "?=";
} else {
// 其它浏览器
filename = URLEncoder.encode(filename, "utf-8");
}
return filename;
}
}
原文链接:https://www.cnblogs.com/shiguanzui/p/11683642.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash