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'm using the solution posted in: PlayFramework: Ajax + Drag n' Drop + File Upload + File object in controller? but unsucefully. I always get a java.io.IOException - Result too large.

I'm trying upload images size of 1,64MB....2MB. My controller code is same in the topic mentioned. Tnks.

public static void upload(String qqFile) {

    if (request.isNew) {

        FileOutputStream moveTo = null;


        // Another way I used to grab the name of the file
        String filename = request.headers.get("x-file-name").value();

        try {
            InputStream data = request.body;
            moveTo = new FileOutputStream(new File(Play.getFile("").getAbsolutePath()) + File.separator + "uploads" + File.separator + filename);
            IOUtils.copy(data, moveTo);

        } catch (Exception ex) {

            // catch file exception
            // catch IO Exception later on
            renderJSON("{success: " + ex.toString() + "}");
        }

    }

    renderJSON("{success: true}");
}
share|improve this question
Hi Fabio, I have the same issue. Where my client is legacy Delphi application. Did you solve this ? – Irfan Mulic Nov 2 '12 at 16:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.