Is Java File object from a MultipartRequest written to disk as temp file or stored in memory?
- by Flash84x
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?