如何使用commons fileupload streaming api上传文件

时间:2013-03-15 12:05:40

标签: java jsp

我正在关注commons文件上传站点中提供的有关流API的示例。我不知道如何弄清楚如何获取上传文件的文件扩展名,如何将文件写入目录,最糟糕的部分是编写示例评论的人// Process the input stream...让我想知道是否& #39;是一件如此微不足道的事情,我是唯一一个不懂得知道的人。

5 个答案:

答案 0 :(得分:8)

在HTML文件中使用此项:

<form action="UploadController" enctype="multipart/form-data" method="post">  
  <input type="file">  
</form>

并在UploadController servlet中,在doPost方法内:

    boolean isMultipart = ServletFileUpload.isMultipartContent(request);

    if (isMultipart) {
        FileItemFactory factory = new DiskFileItemFactory();
        ServletFileUpload upload = new ServletFileUpload(factory);

    try {
        List items = upload.parseRequest(request);
        Iterator iterator = items.iterator();
        while (iterator.hasNext()) {
            FileItem item = (FileItem) iterator.next();

            if (!item.isFormField()) {
                String fileName = item.getName();

                String root = getServletContext().getRealPath("/");
                File path = new File(root + "/uploads");
                if (!path.exists()) {
                    boolean status = path.mkdirs();
                }

                File uploadedFile = new File(path + "/" + fileName);
                System.out.println(uploadedFile.getAbsolutePath());
                item.write(uploadedFile);
            }
        }
    } catch (FileUploadException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

答案 1 :(得分:4)

这是一个执行您希望它执行的操作的Servlet。

package rick;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import org.apache.commons.fileupload.*;
import org.apache.commons.fileupload.util.*;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import javax.servlet.annotation.WebServlet; 
@WebServlet("/upload4")
public class UploadServlet4 extends HttpServlet{
  protected void doPost(HttpServletRequest request, HttpServletResponse response) 
         throws ServletException, IOException {
       PrintWriter out = response.getWriter();
       out.print("Request content length is " + request.getContentLength() + "<br/>"); 
       out.print("Request content type is " + request.getHeader("Content-Type") + "<br/>");
       boolean isMultipart = ServletFileUpload.isMultipartContent(request);
       if(isMultipart){
                  ServletFileUpload upload = new ServletFileUpload();
           try{
               FileItemIterator iter = upload.getItemIterator(request);
               FileItemStream item = null;
               String name = "";
               InputStream stream = null;
               while (iter.hasNext()){
                                     item = iter.next();
                                     name = item.getFieldName();
                                     stream = item.openStream();
                  if(item.isFormField()){out.write("Form field " + name + ": " 
                                           + Streams.asString(stream) + "<br/>");}
                  else {
                      name = item.getName();
                      System.out.println("name==" + name);
                      if(name != null && !"".equals(name)){
                         String fileName = new File(item.getName()).getName();
                         out.write("Client file: " + item.getName() + " <br/>with file name "
                                                    + fileName + " was uploaded.<br/>");
                         File file = new File(getServletContext().getRealPath("/" + fileName));
                         FileOutputStream fos = new FileOutputStream(file);
                         long fileSize = Streams.copy(stream, fos, true);
                         out.write("Size was " + fileSize + " bytes <br/>");
                         out.write("File Path is " + file.getPath() + "<br/>");
                      }
                  }
               }
           } catch(FileUploadException fue) {out.write("fue!!!!!!!!!");}
       } 
  }
} 

答案 2 :(得分:4)

所有这些答案的问题在于,他们已经解决了原始问题!!

正如它所说&#34;处理输入流&#34;它真的让你困惑下一步该做什么。昨晚我试着从一个答案中找到一个提示,但是什么都没有。我去尝试了其他网站,没有。

问题是,我们正在做的是文件上传的范围,这就是问题所在。

我们现在正在使用Java.IO InputStream

  InputStream stream = item.openStream();

现在我们使用&#34;流。&#34;

https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=+writing+a+java+inputstream+to+a+file

在这里,您可以找到所需的各种答案。这很模糊,而且看起来你必须用Commons做一些额外的事情,但实际上它并不是公共的输入InputStream它的Java.io&# 39;!小号

在我们的例子中,我们采用我们给出的流,并通过读取字节数据

上传到新文件

此网站还有许多可能有用的选项http://www.jedi.be/blog/2009/04/10/java-servlets-and-large-large-file-uploads-enter-apache-fileupload/

我希望这可以帮助那些对FileUploading感到困惑和新手的人,因为我在写这个答案之前几分钟才想到这一点。

这是我将代码保存到根驱动器的代码。

  try {
            System.out.println("sdfk");

            boolean isMultipart = ServletFileUpload.isMultipartContent(request);


// Create a new file upload handler
            ServletFileUpload upload = new ServletFileUpload();

// Parse the request
            FileItemIterator iter = upload.getItemIterator(request);


            while (iter.hasNext())
            {
                FileItemStream item = iter.next();
                String name = item.getFieldName();
                InputStream stream = item.openStream();


                    System.out.println("File field " + name + " with file name "
                            + item.getName() + " detected.");
                    // Process the input stream
                    File f = new File("/"+item.getName());

                 System.out.println(f.getAbsolutePath());

                FileOutputStream fout= new FileOutputStream(f);
                BufferedOutputStream bout= new BufferedOutputStream (fout);
                BufferedInputStream bin= new BufferedInputStream(stream);


                int byte_;

                while ((byte_=bin.read()) != -1)
                {
                     bout.write(byte_);
                }

                bout.close();
                bin.close();


            }       

        } 
        catch (FileUploadException ex)
        {
            Logger.getLogger(UploadServlet.class.getName()).log(Level.SEVERE, null, ex);
        }
        response.sendRedirect("/plans.jsp");
祝你好运!

答案 3 :(得分:0)

有一个很棒的“图书馆”可以帮到你。它实际上只是一个Filter的代码示例,它将截取multipart类型的任何表单帖子,并允许您访问文件,文件名等...您可以在正常的servlet post方法中处理。

http://balusc.blogspot.com/2007/11/multipartfilter.html

答案 4 :(得分:0)

我在这里给了http://www.javamonamour.org/2015/10/web-application-for-file-upload-with.html一个完整的工作示例(WebLogic的Eclipse项目,但您可以很容易地将其调整为Tomcat)。

否则只是git clone https://github.com/vernetto/WebFileUploaderStreaming。一个完整的工作示例胜过一千个代码片段。