When a file is submitted to my server using a multipart/form-data POST, is it possible to retrieve only the content of the file from the HttpServletRequest object? The request.getInputStream()
shows some headers included at the beginning and then ------WebKitFormBoundary...
at the end.
Can I get just the file data without having to parse the input stream and extract it?