1. 实现一个增强的HttpServletResponse类,须要继续javax.servlet.http.HttpServletRequestWrapper类,通过重写自己须要增强的方法来实现(这种模式就叫做装饰者模式),利用该增强类在加上过滤器就可以实现无编码转换处理代码

public class MyRequest extends HttpServletRequestWrapper{private HttpServletRequest req;public MyRequest(HttpServletRequest request) {super(request);req=request;}@Overridepublic String getParameter(String name) {//办理编码问题,无论是post还是get要求,都不须要在业务代码中对编码再处理String method=req.getMethod();if(\"大众get\"大众.equalsIgnoreCase(method)){try {String str=req.getParameter(name);byte[] b=str.getBytes(\"大众iso8859-1\"大众);String newStr=new String(b, \"大众utf-8\公众);return newStr;} catch (UnsupportedEncodingException e) {// TODO Auto-generated catch blocke.printStackTrace();}}else if(\"大众post\公众.equalsIgnoreCase(method)){try {req.setCharacterEncoding(\"大众utf-8\"大众);} catch (UnsupportedEncodingException e) {// TODO Auto-generated catch blocke.printStackTrace();}}//绝对不能删除此行代码,由于此行代码返回的便是编码之后的数据return super.getParameter(name);}}

在过滤器中运用

public class FilterTest4 implements Filter {@Overridepublic void init(FilterConfig filterConfig) throws ServletException {}@Overridepublic void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)throws IOException, ServletException {//天生增强的HttpServletRequest工具HttpServletRequest req=(HttpServletRequest) request;MyRequest myReq=new MyRequest(req);//将增强的HttpServletRequest工具传入过滤器实行链中,在后面传入的request工具都会是增强的HttpServletRequest工具chain.doFilter(myReq, response);}@Overridepublic void destroy() {}}

2. 文件上传事理过程

jsp3ca3e标签参数JavaWeb实现文件上传与下载 CSS

1. JavaWeb中实现文件上传:

客户端:HTML页面须要一个<form>表单,且必须设置表单的enctype属性值为\公众multipart/form-data\公众,以及method属性值为\公众post\公众(由于get办法不支持大量数据提交);表单里有一个<input type=\"大众file\公众 name=\"大众\"大众>的标签,且name属性值必须指定。

<html> <head> <title>My JSP 'upload.jsp' starting page</title><meta http-equiv=\"大众pragma\"大众 content=\"大众no-cache\"大众><meta http-equiv=\"大众cache-control\公众 content=\公众no-cache\"大众><meta http-equiv=\"大众expires\"大众 content=\"大众0\公众> <meta http-equiv=\公众keywords\"大众 content=\公众keyword1,keyword2,keyword3\"大众><meta http-equiv=\"大众description\"大众 content=\"大众This is my page\"大众> </head> <body> <form action=\公众\公众 method=\公众post\"大众 enctype=\"大众multipart/form-data\公众> <input type=\公众text\"大众 name=\"大众name\"大众> 请选择文件:<input type=\"大众file\"大众 name=\"大众upload\"大众> <input type=\公众submit\"大众 value=\"大众上传\公众> </form> </body></html>做事端:紧张进行IO读写操作。
必须导入commons-fileupload和commons-io两个jar包,可以通过要求request工具的getInputStream得到一个流来读取要求中的文件数据,但是如果客户端上传多个文件时,就会很麻烦,以是供应了commons-fileupload和commons-io两个jar包来更方便的实现文件上传。

import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.util.List;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.commons.fileupload.FileItem;import org.apache.commons.fileupload.FileUploadException;import org.apache.commons.fileupload.disk.DiskFileItemFactory;import org.apache.commons.fileupload.servlet.ServletFileUpload;public class UploadServlet extends HttpServlet{@Overrideprotected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {/ 1. 创建磁盘文件项工厂类 DiskFileItemFactory 2. 创建核心解析Request类 ServletFileUpload 3. 开始解析Request工具中的数据,并返回一个List凑集 4. List中包含表单中提交的内容 5. 遍历凑集,获取内容 /DiskFileItemFactory fac=new DiskFileItemFactory();ServletFileUpload upload=new ServletFileUpload(fac);upload.setHeaderEncoding(\公众utf-8\"大众);//防止中文的文件名乱码try {List<FileItem> fileItems = upload.parseRequest(req);for(FileItem item:fileItems){//有可能是普通文本项,比如<input type=\"大众text\"大众>标签提交上来的字符串//也有可能是<input type=\"大众submit\公众 value=\公众上传\"大众>上传的文件//文件项与普通项有不同的API来处理//首先判断是普通文本项还是文件项,if(item.isFormField()){//true表示普通文本项//获取文本项的name属性值String name=item.getFieldName();//获取对应的文本String value=item.getString(\"大众utf-8\公众);//防止中文乱码System.out.println(name+\公众:\公众+value);}else{//false表示文件项//先获取文件名称String name=item.getName();//获取文件项的输入流InputStream in=item.getInputStream();//获取做事器端文件存储的目标磁盘路径String path=getServletContext().getRealPath(\"大众/upload\公众);System.out.println(path);//获取输出流,输出到本地文件中OutputStream out=new FileOutputStream(path+\公众/\公众+name);//写入数据int len=0;byte[] b=new byte[1024];while((len=in.read(b))!=-1){out.write(b,0,len);}in.close();out.close();}}} catch (FileUploadException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}

把稳:在文件上传时,会将form表单的属性enctype属性值为\"大众multipart/form-data\"大众,当提交到做事端后,无法利用 req.getParameter(name) 方法来获取到内容,只有通过上面的方法来获取文本项。

2. 文件上传干系核心类:

DiskFileItemFactory:干系API如下public DiskFileItemFactory():无参布局器public DiskFileItemFactory(int sizeThreshold, File repository):布局器,sizeThreshold设置缓冲区大小,默认10240 byte;repository表示如果过缓冲区空间小于上传文件空间,那么会天生临时文件,repository便是指定该临时文件的保存路径,如果过未上传完造诣中断,连续上传时就可以通过这个临时文件来连续上传。
public void setSizeThreshold(int sizeThreshold):设置缓冲区大小public void setRepository(File repository):指定该临时文件的保存路径

//改进上面的文件上传代码,添加一个临时文件public class UploadServlet extends HttpServlet{@Overrideprotected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {DiskFileItemFactory fac=new DiskFileItemFactory();fac.setSizeThreshold(10241024);//设置缓冲区为1mb//设置临时文件确当地磁盘存储路径File repository=new File(getServletContext().getRealPath(\公众/temp\公众));fac.setRepository(repository);ServletFileUpload upload=new ServletFileUpload(fac);upload.setHeaderEncoding(\"大众utf-8\"大众);//防止中文的文件名乱码try {List<FileItem> fileItems = upload.parseRequest(req);for(FileItem item:fileItems){if(item.isFormField()){String name=item.getFieldName();String value=item.getString();String value=item.getString(\公众utf-8\公众);//防止中文乱码System.out.println(name+\公众:\公众+value);}else{String name=item.getName();InputStream in=item.getInputStream();String path=getServletContext().getRealPath(\"大众/upload\公众);System.out.println(path);OutputStream out=new FileOutputStream(path+\"大众/\"大众+name);int len=0;byte[] b=new byte[1024];while((len=in.read(b))!=-1){out.write(b,0,len);}in.close();out.close();}}} catch (FileUploadException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}ServletFileUpload:干系API如下public static final boolean isMultipartContent( HttpServletRequest request) :判断表单提交上来的数据内容是否是multipart类型的数据,即 form表单的 enctype=\公众multipart/form-data\"大众,是则返回true,否则返回falsepublic List / FileItem / parseRequest(HttpServletRequest request):解析request工具,返回一个泛型为FileItem 的List凑集public void setFileSizeMax(long fileSizeMax):设置单个文件的空间大小的最大值public void setSizeMax(long sizeMax):设置所有文件空间大小之和的最大值public void setHeaderEncoding(String encoding):办理上传文件名的乱码问题public void setProgressListener(ProgressListener pListener):上传时的进度条。
FileItem:封装表单中提交的数据boolean isFormField():判断当前FileItem工具是表单中提交的文本数据项,还是文件数据项String getFieldName():获取文本项类型FileItem工具的name属性值,即相称于表单中的 <input type=\"大众text\"大众 name=\"大众name\公众>String getString( String encoding ):获取文本项类型FileItem工具的value值,可以指定编码格式,也可以省略encoding不写String getName():运用于文件项类型的FileItem工具,用于获取文件的名称,包括后缀名InputStream getInputStream():获取输入流void delete():删除临时缓存文件(在输入以及输出流关闭后实行)

3. 实现多文件上传(须要js技能):紧张是变动jsp页面,通过js代码来添加多个文件进行上传,做事器代码无需变动

<%@ page language=\"大众java\"大众 import=\公众java.util.\"大众 pageEncoding=\"大众UTF-8\公众 contentType=\"大众text/html; charset=utf-8\"大众%><%String path = request.getContextPath();String basePath = request.getScheme()+\"大众://\公众+request.getServerName()+\"大众:\"大众+request.getServerPort()+path+\"大众/\"大众;%><!DOCTYPE HTML PUBLIC \"大众-//W3C//DTD HTML 4.01 Transitional//EN\"大众><html> <head> <base href=\公众<%=basePath%>\公众> <title>My JSP 'upload.jsp' starting page</title><meta http-equiv=\"大众pragma\"大众 content=\公众no-cache\"大众><meta http-equiv=\"大众cache-control\"大众 content=\公众no-cache\"大众><meta http-equiv=\"大众expires\公众 content=\公众0\"大众> <meta http-equiv=\"大众keywords\"大众 content=\"大众keyword1,keyword2,keyword3\公众><meta http-equiv=\"大众description\"大众 content=\公众This is my page\"大众> </head> <body> <script type=\公众text/javascript\公众> function run(){ var div=document.getElementById(\"大众divId\"大众); div.innerHTML+= \公众<div><input type='file' name='upload'><input type='button' value='删除' onclick='del(this)'></div>\公众 } function del(presentNode){ var div=document.getElementById(\"大众divId\公众); div.removeChild(presentNode.parentNode); } </script> <div> 多文件上传<br/> <form action=\公众/Servlet/upload\"大众 method=\"大众post\公众 enctype=\"大众multipart/form-data\"大众> <input type=\"大众button\"大众 value=\"大众添加\"大众 onclick=\"大众run()\"大众><br/> <div id=\公众divId\"大众> </div> <input type=\"大众submit\公众 value=\"大众上传\"大众> </form> </div> </body></html>

4. 关于文件上传的一些问题:

文件重名可能会产生覆盖效果,可以在处理文件名时天生一个唯一的文件名如果所有的文件都储存在一个文件夹中,会导致文件夹下文件过多,可以一个用户一个文件夹,或者利用算法目录分离等方法。

3. 文件下载

1. 传统文件下载办法有超链接下载或者后台程序下载两种办法。
通过超链接下载时,如果浏览器可以解析,那么就会直接打开,如果不能解析,就会弹出下载框;而后台程序下载就必须通过两个相应头和一个文件的输入流。

2. 后台程序下载:

两个相应头:Content-Type:其值有比如 text/html;charset=utf-8Content-Disposition:其值为 attachment;filename=文件名 以附件形式打开流:须要获取文件的输入流,然后通过response工具的输出流输出到客户端。

import java.io.File;import java.io.FileInputStream;import java.io.IOException;import java.io.OutputStream;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/ @ClassName:DownLoadServlet @Description:文件下载 @author: @date:2018年9月16日 /public class DownLoadServlet extends HttpServlet{@Overrideprotected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {//获取要求参数,知道要下载那个文件String filename=req.getParameter(\公众filename\公众);//设置相应头String contentType=getServletContext().getMimeType(filename);//依据文件名自动获取对应的Content-Type头res.setContentType(contentType);res.setHeader(\公众Content-Dispotition\公众, \"大众attachment;filename=\"大众+filename);//设置该头,以附件形式打开下载//获取文件的输入流String path=getServletContext().getRealPath(\公众/download\公众)+\公众/\公众+filename;FileInputStream in=new FileInputStream(new File(path));OutputStream out= res.getOutputStream();byte[] b=new byte[1024];int len=0;while((len=in.read(b))!=-1){out.write(b,0,len);}in.close();out.close();}}