Is Java File object from a MultipartRequest written to disk as temp file or stored in memory?

Posted by Flash84x on Stack Overflow See other posts from Stack Overflow or by Flash84x
Published on 2010-04-20T19:31:16Z Indexed on 2010/04/20 19:33 UTC
Read the original article Hit count: 198

Filed under:
|
|

If I accept a file from a MultipartRequest and call

File f = request.getFile("fileName");

Is the file written to disk (as a temp file) or is it only stored in memory at this point?

© Stack Overflow or respective owner

Related posts about java

Related posts about httpservletrequest