com.oreilly.servlet.multipart |
|
Java Source File Name | Type | Comment |
BufferedServletInputStream.java | Class | A BufferedServletInputStream wraps a
ServletInputStream in order to provide input buffering and to
avoid calling the the readLine method of the wrapped
ServletInputStream .
This is necessary because some servlet containers rely on the default
implementation of the readLine method provided by the Servlet
API classes, which is very slow. |
DefaultFileRenamePolicy.java | Class | Implements a renaming policy that adds increasing integers to the body of
any file that collides. |
FilePart.java | Class | A FilePart is an upload part which represents a
INPUT TYPE="file" form parameter. |
FileRenamePolicy.java | Interface | An interface to provide a pluggable file renaming policy, particularly
useful to handle naming conflicts with an existing file. |
LimitedServletInputStream.java | Class | A LimitedServletInputStream wraps another
ServletInputStream in order to keep track of how many bytes
have been read and detect when the Content-Length limit has been reached. |
MacBinaryDecoderOutputStream.java | Class | A MacBinaryDecoderOutput filters MacBinary files to normal
files on the fly; optimized for speed more than readability. |
MultipartParser.java | Class | A utility class to handle multipart/form-data requests,
the kind of requests that support file uploads. |
ParamPart.java | Class | A ParamPart is an upload part which represents a normal
INPUT (for example a non TYPE="file" ) form
parameter. |
Part.java | Class | A Part is an abstract upload part which represents an
INPUT form element in a multipart/form-data form
submission. |
PartInputStream.java | Class | A PartInputStream filters a ServletInputStream ,
providing access to a single MIME part contained with in which ends with
the boundary specified. |