JSP使用Common FileUpload组件实现文件上传及限制上传类型实例代码
程序员文章站
2022-06-11 14:19:22
1、将commons-fileupload-1.3.3.jar复制到web应用的lib文件夹下,在webroot目录下创建limit.jsp页面,在该页面中添加一个文件域的...
1、将commons-fileupload-1.3.3.jar复制到web应用的lib文件夹下,在webroot目录下创建limit.jsp页面,在该页面中添加一个文件域的表单,设置类型为 multipart/form-data。代码如下:
<body> <h2>上传图书课件</h2> <form action="limitfile" name="one" enctype="multipart/form-data" method="post"> 选择一个rar文件: <input type="file" name="fileupload" value="upload" /> <input type="submit" value="上传"> <input type="reset" value="取消"> </form> </body>
上述代码指定提交后将请求提交给limitfile处理,limitfile(servlet)用来处理上传文件及判断文件类型是否匹配,显示上传结果。
2、创建名为limitfile的servlet,并在dopost()方法中编写实现代码,如下所示:
public void dopost(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { request.setcharacterencoding("utf-8"); response.setcharacterencoding("utf-8"); response.setcontenttype("text/html"); printwriter out = response.getwriter(); string uploadpath = ""; diskfileitemfactory factory = new diskfileitemfactory(); //设置是否使用临时文件保存解析出来的数据的那个临界值,该方法传入参数的单位是字节。 factory.setsizethreshold(30 * 1024); //用于设置setsizethreshold()方法中提到的临时文件的存放目录,这里要求使用绝对路径。 factory.setrepository(factory.getrepository()); servletfileupload upload = new servletfileupload(factory); list list = null; try{ list = upload.parserequest(request); string[] limit = new string[]{".jpg", ".gif", ".png", ".bmp"}; //定义限制的文件类型 suffixfilefilter filter = new suffixfilefilter(limit); //获取suffixfilefilter实例 iterator iterator = list.iterator(); while(iterator.hasnext()){ fileitem item =(fileitem)iterator.next(); if(!item.isformfield()){ string filepath = item.getname(); if(filepath != null){ file filename= new file(filepath); file uploadfile = new file(request.getsession().getservletcontext().getrealpath("/") + "upload"); uploadpath = uploadfile.getabsolutepath()+file.pathseparator + uploadpath; //因为路径后面多了个";"号,所以要去掉 uploadpath = uploadpath.substring(0, uploadpath.length()-1); file savefile = new file(uploadpath,filename.getname()); boolean flag = filter.accept(savefile); if(flag){ out.print("禁止上传传图片文件"); break; }else{ try { item.write(savefile); out.print("文件上传成功"); } catch (exception e) { out.print("文件上传失败了"); e.printstacktrace(); } } } } } }catch(fileuploadexception e){ e.printstacktrace(); } }
上述代码在字节串数组limit中定义了不允许上传的文件类型,然后将该数组传递给suffixfilefilter类的构造函数。在通过该类的accept()方法验证当前上传的文件是否符合条件。最后将文件保存到项目的upload目录下。
总结
以上所述是小编给大家介绍的jsp使用common fileupload组件实现文件上传及限制上传类型实例代码,希望对大家有所帮助