引用:
http://luoke920.iteye.com/blog/271257
相关文章也可以看一下:
http://www.jspcn.net/htmlnews/2005011.html
http://www.jspcn.net/htmlnews/2005024.html
http://www.jspcn.net/htmlnews/20050115.html
一文中使用FileUpload组件实现多文件的上传。。。
经个人测试,组件本身使用上没有问题,不过因为考虑客户端和服务器有可能是linux主机的原因,在具体调用方面我做了一些改进。。。
本教程以Apache组织的commons项目中的FileUpload项目做为jsp的文件上传组件,FileUpload项目完全尊守RFC1867规范中
关于在HTTP request 中通过Post方法提交文件的规范,该项目性能稳定快速,易于部署和使用.
本次教程以前端jsp + 后端 servlet的方式上传文件,你也可以完全在jsp中实现而不用servlet.
在开始之前你要准备以下几个东西:
1. commons-FileUpload 1.2.1 包
下载地址:http://jakarta.apache.org/commons/fileupload/
具体地址:http://commons.apache.org/downloads/download_fileupload.cgi
下载Binary下的zip即可。
2. commons-IO 1.4 包
下载地址:http://jakarta.apache.org/commons/io/
具体地址:http://commons.apache.org/downloads/download_io.cgi
下载Binary下的zip即可。
3. Commons-BeanUtils 1.8 包
下载地址:http://jakarta.apache.org/commons/beanutils/
具体地址:http://commons.apache.org/downloads/download_beanutils.cgi
下载Binary下的zip即可。
好了下载完成后,解压得到5个jar包:分别是:
commons-beanutils-1.8.0.jar
commons-beanutils-bean-collections-1.8.0.jar
commons-beanutils-core-1.8.0.jar
commons-fileupload-1.2.1.jar
commons-io-1.4.jar
配置好开发环境后:如果没配置好可以看:
http://blog.csdn.net/luweifeng1983/archive/2008/12/23/3590726.aspx
用的是Eclipse3.4 + tomcat5.5并已有tomcat插件一起的。(jdk1.3或1.5的都可,已测试)
新建一个项目名叫Upload
建立好后将类文件输出目录改为:Upload/WebContent/WEB-INF/classes
接下来将上面5个jar包拷贝到WEB-INF/lib目录。。
!!说到这里要注意一个问题,那就是lib下的jar文件和eclipse工程下的jar放置的区别,一般你要使用你的代码拷到别的电脑上也能运行就把所有的jar都先拷到lib下,然后在eclipse的build path下点add jars将lib中的jar加进来就行了。。
下面就分别建一个jsp和一个servlet。。
如下:upload.jsp
- <%@pagelanguage="java"contentType="text/html;charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">
- <title>Inserttitlehere</title>
- </head>
- <body>
- <formname="upform"action="UploadServlet"method="POST"enctype="multipart/form-data">
- <inputtype="file"name="file1"id="file1"/><br/>
- <inputtype="file"name="file2"id="file2"/><br/>
- <inputtype="file"name="file3"id="file3"/><br/>
- <inputtype="submit"value="Submit"/><br/>
- <inputtype="reset"/>
- </form>
- </body>
- </html>
UploadServlet.java
- packagecom.gobusiness.eus.servlet;
-
- importjava.io.BufferedInputStream;
- importjava.io.BufferedOutputStream;
- importjava.io.File;
- importjava.io.FileOutputStream;
- importjava.io.IOException;
-
- importjavax.servlet.ServletException;
- importjavax.servlet.http.HttpServletRequest;
- importjavax.servlet.http.HttpServletResponse;
-
- importorg.apache.commons.fileupload.FileItemIterator;
- importorg.apache.commons.fileupload.FileItemStream;
- importorg.apache.commons.fileupload.disk.DiskFileItemFactory;
- importorg.apache.commons.fileupload.servlet.ServletFileUpload;
- importorg.apache.commons.fileupload.util.Streams;
-
- publicclassUploadServletextendsjavax.servlet.http.HttpServletimplements
- javax.servlet.Servlet{
- FiletmpDir=null;
- FilesaveDir=null;
-
- publicUploadServlet(){
- super();
- }
-
- protectedvoiddoGet(HttpServletRequestrequest,
- HttpServletResponseresponse)throwsServletException,IOException{
- doPost(request,response);
- }
-
- protectedvoiddoPost(HttpServletRequestrequest,
- HttpServletResponseresponse)throwsServletException,IOException{
- try{
- if(ServletFileUpload.isMultipartContent(request)){
- DiskFileItemFactorydff=newDiskFileItemFactory();
- dff.setRepository(tmpDir);
- dff.setSizeThreshold(1024000);
- ServletFileUploadsfu=newServletFileUpload(dff);
- sfu.setFileSizeMax(5000000);
- sfu.setSizeMax(10000000);
- FileItemIteratorfii=sfu.getItemIterator(request);
-
- while(fii.hasNext()){
- FileItemStreamfis=fii.next();
- if(!fis.isFormField()&&fis.getName().length()>0){
- StringfileName=fis.getName().substring(
- fis.getName().lastIndexOf("\\"));
- BufferedInputStreamin=newBufferedInputStream(fis
- .openStream());
- BufferedOutputStreamout=newBufferedOutputStream(
- newFileOutputStream(newFile(saveDir
- +fileName)));
- Streams.copy(in,out,true);
- }
- }
- response.getWriter().println("Fileuploadsuccessfully!!!");
- }
- }catch(Exceptione){
- e.printStackTrace();
- }
- }
-
- publicvoidinit()throwsServletException{
-
- super.init();
- StringtmpPath="c:\\tmpdir";
- StringsavePath="c:\\updir";
- tmpDir=newFile(tmpPath);
- saveDir=newFile(savePath);
- if(!tmpDir.isDirectory())
- tmpDir.mkdir();
- if(!saveDir.isDirectory())
- saveDir.mkdir();
-
- }
- }
web.xml
- <?xmlversion="1.0"encoding="UTF-8"?>
- <web-appid="WebApp_ID"version="2.4"xmlns="http://java.sun.com/xml/ns/j2ee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/j2eehttp://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
- <display-name>
- Upload</display-name>
- <servlet>
- <description>
- </description>
- <display-name>
- UploadServlet</display-name>
- <servlet-name>UploadServlet</servlet-name>
- <servlet-class>
- com.gobusiness.eus.servlet.UploadServlet</servlet-class>
- </servlet>
- <servlet-mapping>
- <servlet-name>UploadServlet</servlet-name>
- <url-pattern>/UploadServlet</url-pattern>
- </servlet-mapping>
- <welcome-file-list>
- <welcome-file>index.html</welcome-file>
- <welcome-file>index.htm</welcome-file>
- <welcome-file>index.jsp</welcome-file>
- <welcome-file>default.html</welcome-file>
- <welcome-file>default.htm</welcome-file>
- <welcome-file>default.jsp</welcome-file>
- </welcome-file-list>
- </web-app>
-
好了,文件建立好后,在eclipse下直接部署再启动Tomcat访问upload.jsp再上传文件(这里可以一次上传三个文件),当然可以使用js实现提交更多的文件上传。。。
当然你也可以把你的upload项目整个拷贝到tomcat的webapps目录下,启动tomcat.然后
打开IE浏览器在地址栏中输入http://localhost:8080/upload/upload.jsp
如:我要上传的文件位于:D:\import file下,文件名分别为:
CNIL0437.TXT
GIDL0437.TXT
MSGL0437.TXT
上传成功后,这三个文件将被上传到了c:\updir下面。。。,如果在c:\updir下面找到了这三个文件说明上传已经成功了。。
好了,上面的步骤其实http://luoke920.iteye.com/blog/271257已经讲得详细了,只是我把自己的部署、测试加进去了而以。那么我现在要对它进行一些改进。。。
首先第一:
- #publicvoidinit()throwsServletException{
- #/*对上传文件夹和临时文件夹进行初始化*/
- #super.init();
- #StringtmpPath="c:\\tmpdir";
- #StringsavePath="c:\\updir";
- #tmpDir=newFile(tmpPath);
- #saveDir=newFile(savePath);
- #if(!tmpDir.isDirectory())
- #tmpDir.mkdir();
- #if(!saveDir.isDirectory())
- #saveDir.mkdir();
- #
- #}
即它创建tempdir和updir是在servlet的init方法里面创建的,我们知道init方法只在servlet第一次被加载的时候执行,那么第一次创建成功后,如果后来的程序对这个目录做了修改或删除,那么从些以后就再也不能创建这两个目录了。。。
所以对创建目录的工作应该放到post方法里面。。。
第二:我们应该注意到程序在服务器上创建目录然后把文件上传到这两个目录(先放到temdir再到updir),如果我的服务器是linux主机怎么办,能用?
- 1.StringtmpPath="c:\\tmpdir";
- 2.StringsavePath="c:\\updir";
-
-
显然不能,所以创建目录时要使用File.separator.
不过如果实在不想用File.separaotr,至少也要用/updir,而不是使用\\,因为\\在linux下是肯定没用的。。
第三:下面语句用于获取上传文件的文件名,即D:\import file\CNIL0437.TXT,也就是说要获得CNIL0437.TXT
- StringfileName=fis.getName().substring(
- fis.getName().lastIndexOf("\\"));
但上面的语句实际上只针对window客户端才有用,因为实际上上面的语句如果客户端使用的是window系统,上传文件时fis.getName()返回的是D:\\import file\\CNIL0437.TXT
而这里也有一个要注意的地方就是即使在windows的客户端得到的fileName也是\CNIL0437.TXT而不是CNIL0437.TXT,这里因为
举例:"abchang".substring(2) = "chang".也就是substring(n)实际上是取第n+1到最后的字符。。所以这里应该改为
- StringfileName=fis.getName().substring(
- fis.getName().lastIndexOf("\\")+1);
- if(fis.getName().lastIndexOf("\\") == -1){
- fileName=fis.getName().substring(
- fis.getName().lastIndexOf("/")+1);
- }
上面lastIndexOf当找不到“\\”时默认返回值为-1
第四:下面语句
- BufferedOutputStreamout=newBufferedOutputStream(
- newFileOutputStream(newFile(saveDir
- +fileName)));
上面saveDir是一个File的实例,而更奇怪的是这个程序确实可以运行,说实话我现在没有明白这个语句编译器没有报错:newFile(saveDir +fileName)
因为File的构造函数中好象没有File(File+ String) 这么的构造函数。。这个问题??保留。。有看到这个问题并知道的可以解释一下。。。
- 上面提到的问题已解决了
- 这里使用的+号运算符实际上相当于saveDir.toString+String
jdk api:中只有new File(File,String)构造函数,经测试这里使用:new File(saveDir,fileName)也可以。
这里同样有使用File.separator的问题:这里因为上面取得的
fileName是\CNIL0437.TXT,而我改正后的是CNIL0437.TXT。。所以这里也必须改。。
改正后为:
- newFileOutputStream(newFile(savePath+File.separator+fileName)));
注意我改成了savePath 因为savePath 是String类型的。。
好了这个程序到这里改得基本差不多了。。。
- 注:
- 这个程序里,我的上传文件的目录名和文件名都用的是英文,但实际当中可能使用中文名称,特别是文件名是中文的情况,经测试程序当文件名和目录名中有中文时获得的是乱码,这个问题有待解决,此贴名称前面加“!”以示待改进!
- 2008-12-26:
- 修正bug:当上传的文件目录或文件名为中文时提交过后用fis.getName()得到的是乱码
- 如:C:\DocumentsandSettings\zqwf\桌面\华为面试题.txt
- 如果不做任何处理理到的将是:
- C:\DocumentsandSettings\zqwf\妗岄潰\鍗庝负闈㈣瘯棰�.txt
- 在网上看了一些有关上传文件时乱码的问题,也看了FileUpload组件的相关源代码,但后来认为不需要对源码做修改。。。。
- 再看我前面的一篇博文:http:
- 提到post提交的乱码处理方法直接在servlet中添加
- request.setCharacterEncoding("UTF-8");即可解决问题
下面看看我实际应用的环境:
服务器:jboss3.2.0
eclipse 1.3.1
服务器:windows和linux都有,正因为这个所以上面改进了一些地方,总结起来就是在new File的时候里面应该使用File.separator,但在外面普通字符串来写目录的时候一般不要使用。。。
另外一般把目录写成相对目录,然后保存在属性文件中,注意的是:服务器不同,这两个属性文件配置的目录也有些不同。。好了看我下面的实现
sys.properties文件
windows服务器
- path.install=c:\\GeTSmart
- path.web.app=../jboss-3.2.0/server/minimal/deploy/GeTSmart.war/WEB-INF
- path.doc.ie.imp=./csv
- path.doc.ie.imp.temp=./tmpdir
linux服务器下只需改成以下就可以了。
- path.install=/usr/local/getseus
- path.web.app=../jboss-3.2.1/server/minimal/deploy/GeTSmart.war/WEB-INF
- path.doc.ie.imp=./csv
- path.doc.ie.imp.temp=./tmpdir
下面看我的servlet代码:
- try{
- StringtmpPath=EusUtil.getFullPath(SysProp.getProperty("path.doc.ie.imp.temp"));
-
- StringsavePath=EusUtil.getFullPath(SysProp.getProperty("path.doc.ie.imp"));
-
- tmpDir=newFile(tmpPath);
- saveDir=newFile(savePath);
- if(!tmpDir.isDirectory())
- tmpDir.mkdir();
- if(!saveDir.isDirectory())
- saveDir.mkdir();
- Logger.logDebug(className,"thesavePathdirnameis:"+savePath);
- StringuserId=userBean.getUserId();
- savePath=savePath+File.separator+userId;
- saveDir=newFile(savePath);
- if(!saveDir.isDirectory())
- saveDir.mkdir();
-
- Logger.logDebug(className,"thesavePathdirandtheuseridnameis:"+savePath);
- if(ServletFileUpload.isMultipartContent(req)){
- DiskFileItemFactorydff=newDiskFileItemFactory();
- dff.setRepository(tmpDir);
- dff.setSizeThreshold(1024000);
- ServletFileUploadsfu=newServletFileUpload(dff);
- sfu.setFileSizeMax(5000000);
- sfu.setSizeMax(10000000);
- FileItemIteratorfii=sfu.getItemIterator(req);
-
- while(fii.hasNext()){
- FileItemStreamfis=fii.next();
- if(!fis.isFormField()&&fis.getName().length()>0){
- StringfileName=fis.getName().substring(
- fis.getName().lastIndexOf("\\")+1);
- if(fis.getName().lastIndexOf("\\")<0){
- fileName=fis.getName().substring(
- fis.getName().lastIndexOf("/")+1);
- }
-
- Logger.logDebug(className,"gettheFile.separatoris:"+File.separator);
- Logger.logDebug(className,"gettheclientimportfilepathis<<fis.getName()>>:"+fis.getName());
- Logger.logDebug(className,"gettheclientimportfilepathlastindexof\\+1is<<fis.getName()indexof>>:"+(fis.getName().lastIndexOf("\\")+1));
- Logger.logDebug(className,"gettheimportfilenameis:"+fileName);
- BufferedInputStreamin=newBufferedInputStream(fis
- .openStream());
- BufferedOutputStreamout=newBufferedOutputStream(
-
- newFileOutputStream(newFile(savePath+File.separator+fileName)));
- Logger.logDebug(className,"gettheoutputStreamfilepathis<<newFile(savePath+File.separator+fileName)>>"+savePath+File.separator+fileName);
- Streams.copy(in,out,true);
- }
- }
-
上面用到的方法:
getFullPath
- publicstaticStringgetFullPath(Stringpath){
-
- StringsInstallPath=CommonUtil.null2String(SysProp.getProperty("path.install"));
- StringsWebAppPath=CommonUtil.null2String(SysProp.getProperty("path.web.app"));
-
- if(path.trim().substring(0,2).equals("..")){
- returnreplaceNameSeparator(sInstallPath+path.trim().substring(2));
- }
- elseif(path.trim().charAt(0)=='.'){
- if(sWebAppPath.trim().substring(0,2).equals(".."))
- returnreplaceNameSeparator(sInstallPath+sWebAppPath.trim().substring(2)+path.trim().substring(1));
- else
- returnreplaceNameSeparator(sWebAppPath+path.trim().substring(1));
- }else{
- returnreplaceNameSeparator(path.trim());
- }
- }
- publicstaticStringreplaceNameSeparator(Stringpath)
- {
- StringnewString="";
- if(path.indexOf('/')!=-1)
- newString=path.replace('/',File.separatorChar);
- else
- newString=path;
- if(newString.indexOf('\\')!=-1)
- newString=newString.replace('\\',File.separatorChar);
- returnnewString;
-
- }
主要注意我提到的几个要改的地方就行了。。其实就是要考虑当客户端和服务器都可能是windows和linux的情况。
说大了就是编程要注意细节,要尽量去完善代码。。。这样才能使代码不会因环境变化一下就不能运行。。。。
前面讲过可以实现更多文件上传,这里只需要改一下jsp页面就行了,改进后的代码如下:
upload.jsp
- <%@pagelanguage="java"contentType="text/html;charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">
- <title>Inserttitlehere</title>
- <script>
- varfile_to=0;
- functionadd_inp()
- {
- newInp=document.createElement("input");
- newInp.setAttribute("id","file_"+file_to);
- newInp.setAttribute("type","file");
- newInp.setAttribute("name","upfile");
- div1.appendChild(newInp);
- newInp=document.createElement('<inputtype="button"value="删除"onclick="del_inp('+file_to+')">');
- newInp.setAttribute("id","file_del_"+file_to);
- div1.appendChild(newInp);
- newInp=document.createElement('<BR/>');
- newInp.setAttribute("id","file_br_"+file_to);
- div1.appendChild(newInp);
- file_to++;
- }
-
- functiondel_inp(file_id)
- {
-
- div1.removeChild(document.getElementById("file_"+file_id));
- div1.removeChild(document.getElementById("file_del_"+file_id));
- div1.removeChild(document.getElementById("file_br_"+file_id));
- }
-
- </script>
- </head>
- <body>
- <formname="upform"action="UploadServlet"method="POST"enctype="multipart/form-data">
- <divid=div1>
- </div>
- <INPUTTYPE="button"VALUE="添加上传文件"onclick=add_inp()>
- <inputtype="submit"value="Submit"/>
- <inputtype="reset"/>
- </form>
- </body>
- </html>
最近查看fileupload的api的时候发现有另一种迭代及写文件的方式如下:
- protectedvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{
- Stringstep="";
- FiletempDir=null;
- FilesaveDir=null;
- try{
- request.setCharacterEncoding("UTF-8");
- step="uploadfiletoc:/updir";
- StringtempPath="c:/tempdir";
- StringsavePath="c:/updir";
- tempDir=ImportManager.mkdir(tempPath);
- saveDir=ImportManager.mkdir(savePath);
- intmaxMemorySize=1024*1024*1024;
- intMaxSize=100*1024*1024;
- if(ServletFileUpload.isMultipartContent(request)){
- DiskFileItemFactoryfactory=newDiskFileItemFactory();
- factory.setSizeThreshold(maxMemorySize);
- factory.setRepository(tempDir);
- ServletFileUploadupload=newServletFileUpload(factory);
- upload.setSizeMax(MaxSize);
- Listitems=upload.parseRequest(request);
- Iteratoriter=items.iterator();
- while(iter.hasNext()){
- FileItemitem=(FileItem)iter.next();
- if(!item.isFormField()){
-
- StringfieldName=item.getFieldName();
- Stringvalue=item.getString();
- StringfileName=item.getName();
- StringcontentType=item.getContentType();
- booleanisInMemory=item.isInMemory();
- longsizeInbytes=item.getSize();
-
- if(fileName.lastIndexOf("\\")!=-1){
- fileName=fileName.substring(fileName.lastIndexOf("\\")+1);
- }else{
- fileName=fileName.substring(fileName.lastIndexOf("/")+1);
- }
-
- item.write(newFile(saveDir+File.separator+fileName));
- }
- }
- }
- }catch(Exceptione){
- }finally{
- request.getRequestDispatcher("AckMessage.jsp").forward(request,response);
- }
- }
上面主要是
ServletFileUpload 类提供了返回List的方法
parseRequest
,而前面的例子使用的是该类返回FileItemIterator
的
getItemIterator
方法