Uses of Interface
org.apache.commons.fileupload.FileItem
-
Packages that use FileItem Package Description org.apache.commons.fileupload A component for handling HTML file uploads as specified by RFC 1867.org.apache.commons.fileupload.disk A disk-based implementation of theFileIteminterface.org.apache.commons.fileupload.portlet An implementation ofFileUploadfor use in portlets conforming to JSR 168.org.apache.commons.fileupload.servlet An implementation ofFileUploadfor use in servlets conforming to JSR 53. -
-
Uses of FileItem in org.apache.commons.fileupload
Classes in org.apache.commons.fileupload that implement FileItem Modifier and Type Class Description classDefaultFileItemDeprecated.1.1 UseDiskFileIteminstead.Methods in org.apache.commons.fileupload that return FileItem Modifier and Type Method Description FileItemDefaultFileItemFactory. createItem(java.lang.String fieldName, java.lang.String contentType, boolean isFormField, java.lang.String fileName)Deprecated.1.1 UseDiskFileItemFactoryinstead.FileItemFileItemFactory. createItem(java.lang.String fieldName, java.lang.String contentType, boolean isFormField, java.lang.String fileName)Create a newFileIteminstance from the supplied parameters and any local factory configuration.protected FileItemFileUploadBase. createItem(java.util.Map<java.lang.String,java.lang.String> headers, boolean isFormField)Deprecated.1.2 This method is no longer used in favor of internally created instances ofFileItem.Methods in org.apache.commons.fileupload that return types with arguments of type FileItem Modifier and Type Method Description java.util.Map<java.lang.String,java.util.List<FileItem>>FileUploadBase. parseParameterMap(RequestContext ctx)Processes an RFC 1867 compliantmultipart/form-datastream.java.util.List<FileItem>DiskFileUpload. parseRequest(javax.servlet.http.HttpServletRequest req, int sizeThreshold, long sizeMax, java.lang.String path)Deprecated.1.1 UseServletFileUploadinstead.java.util.List<FileItem>FileUploadBase. parseRequest(javax.servlet.http.HttpServletRequest req)Deprecated.1.1 UseServletFileUpload.parseRequest(HttpServletRequest)instead.java.util.List<FileItem>FileUploadBase. parseRequest(RequestContext ctx)Processes an RFC 1867 compliantmultipart/form-datastream. -
Uses of FileItem in org.apache.commons.fileupload.disk
Classes in org.apache.commons.fileupload.disk that implement FileItem Modifier and Type Class Description classDiskFileItemThe default implementation of theFileIteminterface.Methods in org.apache.commons.fileupload.disk that return FileItem Modifier and Type Method Description FileItemDiskFileItemFactory. createItem(java.lang.String fieldName, java.lang.String contentType, boolean isFormField, java.lang.String fileName)Create a newDiskFileIteminstance from the supplied parameters and the local factory configuration. -
Uses of FileItem in org.apache.commons.fileupload.portlet
Methods in org.apache.commons.fileupload.portlet that return types with arguments of type FileItem Modifier and Type Method Description java.util.Map<java.lang.String,java.util.List<FileItem>>PortletFileUpload. parseParameterMap(javax.portlet.ActionRequest request)Processes an RFC 1867 compliantmultipart/form-datastream.java.util.List<FileItem>PortletFileUpload. parseRequest(javax.portlet.ActionRequest request)Processes an RFC 1867 compliantmultipart/form-datastream. -
Uses of FileItem in org.apache.commons.fileupload.servlet
Methods in org.apache.commons.fileupload.servlet that return types with arguments of type FileItem Modifier and Type Method Description java.util.Map<java.lang.String,java.util.List<FileItem>>ServletFileUpload. parseParameterMap(javax.servlet.http.HttpServletRequest request)Processes an RFC 1867 compliantmultipart/form-datastream.java.util.List<FileItem>ServletFileUpload. parseRequest(javax.servlet.http.HttpServletRequest request)Processes an RFC 1867 compliantmultipart/form-datastream.
-