Converts a file item to a string.
Converts a file item to a string.
Browsers tend to be sloppy about providing content type headers with charset information to form-data parts. Worse, browsers are inconsistent about how they encode these parameters.
The default implementation attempts to use the charset specified on the request. If that is unspecified, and it usually isn't, then it falls back to the kernel's charset.
Creates a new file upload handler to parse the request.
Creates a new file upload handler to parse the request. By default, it
creates a ServletFileUpload instance with the file item factory
returned by the fileItemFactory method. Override this method to
customize properties such as the maximum file size, progress listener,
etc.
a new file upload handler.