I'm trying to store multiple image files to the GAE Blobstore using HTML5 multiple file input.

Since my web application will be used by photographers to batch upload photos, it is absolutely critical to enable multiple file selection on the client's browser (uploading 200+ photos one at a time would be a pain)

The client side HTML would look like this:

   <form action = "/upload" method="post" enctype="multipart/form-data">
     <input type="file" name="myFiles[]" multiple="true"/>
     <input type="submit"/>
   </form>

On the server side, a Java HttpServlet would be used to store the group of photos:

public class PhotoUploadServlet extends HttpServlet {

  @Override
  protected void doPost(HttpServletRequest req, HttpServletResponse resp)
      throws ServletException, IOException {
      //Upload each photo of myFiles[] in sequence to the GAE Blobstore
  }

I'm planning on storing each photo individually using the procedure explained here.

The problem: I don't know how to extract every image individually from the myFiles[] parameter of the HttpServletRequest.

Could someone explain me how to interpret the myFiles[] parameter as something that would be easily used in sequence, alike a List<SomeImageType>. Then I could easily save each photo in the List<SomeImageType> individually to the Blobstore!

Thanks in advance!

P.S.: I've already looked at this post, but since I do not know Python, I'm a little bit lost by the solution proposed in Nick Johnson's blog post.

link|improve this question

50% accept rate
Well, Nick Johnson's blog post contains the solution. Each file needs its own unique upload URL, so you need to update that URL after each upload. That's what the first code snippet (it's JavaScript code!) does. The second snippet shows some Phyton code that generates the new upload URL and sends that as response to the client. I'm sure you can do the same with a Java servlet. – Gerhard Aug 21 '11 at 20:03
The Python code in my post is pretty trivial - almost all the work is done in the Javascript code. You should be able to upload multiple files in one POST now from the blobstore, but using a file manager is going to give users a better experience in any case. – Nick Johnson Aug 22 '11 at 5:03
By the way, welcome to Java from the PHP world. Your multi-valued form elements don't have to have [] after them here. – Nick Johnson Nov 24 '11 at 23:16
feedback

2 Answers

In the servlet, you obtain the blobs with:

Map<String, BlobKey> blobs = blobstoreService.getUploadedBlobs(req);

But you need a small hack to change the name of the files, otherwise blobs field will contain just one key:

<script type="text/javascript">
   function uploadFile() {
     if (window.File && window.FileList) {
      var fd = new FormData();
      var files = document.getElementById('fileToUpload').files;
      for (var i = 0; i < files.length; i++) {  
        fd.append("file"+i, files[i]);
      }
      var xhr = new XMLHttpRequest();
      xhr.open("POST", document.getElementById('uploadForm').action);
      xhr.send(fd);
    } else {
      document.getElementById('uploadForm').submit();   //no html5
    }
}
</script>

<form id="uploadForm" enctype="multipart/form-data" method="post"
        action=<%=blobstoreService.createUploadUrl("/upload") %>">
   <input type="file" name="fileToUpload" id="fileToUpload" multiple />
   <input type="button" onclick="uploadFile();" value="Upload" />
</form>

This is the GAE issue: http://code.google.com/p/googleappengine/issues/detail?id=3351

link|improve this answer
feedback

@Simon-Pierre I am able to upload multiple files using apache commons FileUpload using your html 5 code. Here is my solution.

Html Code

<body>
<form action="upload.jsp" method="post" enctype="multipart/form-data">
    <input type="file" name="myFiles[]" multiple="true" /> <input
        type="submit" value = "Upload"/>
</form>
</body>

My upload.jsp looks like this

<%@ page import="java.util.List"%>
<%@ page import="java.util.Iterator"%>
<%@ page import="java.io.File"%>
<%@ page
    import="org.apache.commons.fileupload.servlet.ServletFileUpload"%>
<%@ page import="org.apache.commons.fileupload.disk.DiskFileItemFactory"%>
<%@ page import="org.apache.commons.fileupload.*"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>After Upload</title>
</head>
<body>
    <%
        boolean isMultipart = ServletFileUpload.isMultipartContent(request);
        if (!isMultipart) {
        } else {
            FileItemFactory factory = new DiskFileItemFactory();
            ServletFileUpload upload = new ServletFileUpload(factory);
            List items = null;
            try {
                items = upload.parseRequest(request);
            } catch (FileUploadException e) {
                e.printStackTrace();
            }
            Iterator itr = items.iterator();
            while (itr.hasNext()) {
                FileItem item = (FileItem) itr.next();

                if (item.isFormField()) {
                } else {
                    try {
                        String itemName = item.getName();

                        if ("".equals(itemName))
                            continue;                       

                        File savedFile = new File("/tmp/" + itemName);
                        item.write(savedFile);

                        out.println(itemName + " uploaded. <br />");
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    %>
</body>
</html>

Two jars I used are commons-fileupload-1.2.2.jar and commons-io-2.1.jar from apache commons. After you run the program and upload the file look in the /tmp/ directory for uploaded files, or change the directory in the code above

File savedFile = new File("/tmp/" + itemName);

to what ever you like E.g

File savedFile = new File("C:\\temp\\" + itemName);
link|improve this answer
this is not for Google App Engine solution. – JR Galia May 21 at 3:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.