public interface MultipartDecoder
Modifier and Type | Method and Description |
---|---|
HttpServletRequest |
decode(HttpServletRequest request)
Decodes the request, returning a new
HttpServletRequest implementation that will allow
access to the form fields submitted in the request (but omits uploaded files). |
UploadedFile |
getFileUpload(String parameterName) |
org.apache.commons.fileupload.FileUploadException |
getUploadException()
Returns the exception the occured during the file upload, or null if the processing of the multipart upload
stream was succesful.
|
UploadedFile getFileUpload(String parameterName)
parameterName
- Name of the query parameter associated with the uploaded fileHttpServletRequest decode(HttpServletRequest request)
HttpServletRequest
implementation that will allow
access to the form fields submitted in the request (but omits uploaded files).request
- The incoming servlet requestorg.apache.commons.fileupload.FileUploadException getUploadException()
5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.