Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I try to upload multiple files with one request but it always error, My view code:

<input type="file" name="files[]" multiple>

And:

public static void doUpload(File[] files) {
    File dir = new File(Play.applicationPath+File.separator+"public"+File.separator+"uploads");
    if (!dir.exists()) {
        dir.mkdirs();
    }

    boolean success = files.renameTo(new File(dir, files.getName()));
    if (!success) {
        renderText("{'success':'true', 'msg':{'url':'"+files.getName()+"'}}");
    } else {
        renderText("{'success':'true'}");
    }
}

If I use single file upload with <input type="file" name="files"> and parameters in controllor using File files, then it works fine.

thank you.

share|improve this question
What's the error stacktrace? – Pere Villega Nov 16 '11 at 10:18

2 Answers

If you have multiple inputs with the same name, the controller will receive those files with the given name as an array, e.g.

Controller:

public static void upload(File[] files) {
    ...
}

View:

#{form @upload(), enctype:'multipart/form-data'}
<input type="file" name="files">
<input type="file" name="files">
<input type="file" name="files">
<input type="submit" value="Upload" />
#{/form}

You can always add a bit of javascript to allow the user to add additional inputs on the client side

share|improve this answer

This works fine in Play 1.2.5 with the multiple tag in <input type="file" name="files" multiple>. The only problem I see with the original posters code was name="files[]" which should have been name="files"

It may have been the case that there was also a bug in an earlier version of Play, but this just worked for me (I selected 50 files with one file input)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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