A B C F G I L M P R S W
A
- available() -
类 cn.dreampie.upload.multipart.PartInputStream 中的方法
- Returns the number of bytes that can be read from this input stream
without blocking.
B
- BufferedServletInputStream - cn.dreampie.upload.multipart 中的 类
- A
BufferedServletInputStream wraps a
ServletInputStream in order to provide input buffering and to
avoid calling the the readLine method of the wrapped
ServletInputStream. - BufferedServletInputStream(InputStream) -
类 cn.dreampie.upload.multipart.BufferedServletInputStream 的构造方法
- Creates a
BufferedServletInputStream that wraps the provided
ServletInputStream.
C
- close() -
类 cn.dreampie.upload.multipart.PartInputStream 中的方法
- Closes this input stream and releases any system resources
associated with the stream.
- cn.dreampie.upload - 软件包 cn.dreampie.upload
-
- cn.dreampie.upload.multipart - 软件包 cn.dreampie.upload.multipart
-
F
- FilePart - cn.dreampie.upload.multipart 中的 类
- A
FilePart is an upload part which represents a
INPUT TYPE="file" form parameter. - files -
类 cn.dreampie.upload.MultipartRequest 中的变量
-
G
- getContentType() -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Returns the content type of the file data contained within.
- getContentType(String) -
类 cn.dreampie.upload.MultipartRequest 中的方法
- Returns the content type of the specified file (as supplied by the
client browser), or null if the file was not included in the upload.
- getDir() -
类 cn.dreampie.upload.multipart.FilePart 中的方法
-
- getFile(String) -
类 cn.dreampie.upload.MultipartRequest 中的方法
- Returns a File object for the specified file saved on the server's
filesystem, or null if the file was not included in the upload.
- getFileName() -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Returns the name that the file was stored with on the remote system,
or
null if the user didn't enter a file to be uploaded.
- getFileNames() -
类 cn.dreampie.upload.MultipartRequest 中的方法
- Returns the names of all the uploaded files as an Enumeration of
Strings.
- getFilePath() -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Returns the full path and name of the file on the remote system,
or
null if the user didn't enter a file to be uploaded.
- getFiles() -
类 cn.dreampie.upload.MultipartRequest 中的方法
- Returns all File objects for the specified file saved on the server's
filesystem
- getFilesystemName(String) -
类 cn.dreampie.upload.MultipartRequest 中的方法
- Returns the filesystem name of the specified file, or null if the
file was not included in the upload.
- getInputStream() -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Returns an input stream which contains the contents of the
file supplied.
- getName() -
类 cn.dreampie.upload.multipart.Part 中的方法
- Returns the name of the form element that this Part corresponds to.
- getOriginalFileName(String) -
类 cn.dreampie.upload.MultipartRequest 中的方法
- Returns the original filesystem name of the specified file (before any
renaming policy was applied), or null if the file was not included in
the upload.
- getParams() -
类 cn.dreampie.upload.MultipartRequest 中的方法
- Returns all Param objects for the specified param saved on the server's
filesystem
- getStringValue() -
类 cn.dreampie.upload.multipart.ParamPart 中的方法
- Returns the value of the parameter in as a string (using the
parser-specified encoding to convert from bytes) or the empty string
if the user entered no value for this parameter.
- getStringValue(String) -
类 cn.dreampie.upload.multipart.ParamPart 中的方法
- Returns the value of the parameter in the supplied encoding
or empty string if the user entered no value for this parameter.
- getValue() -
类 cn.dreampie.upload.multipart.ParamPart 中的方法
- Returns the value of the parameter as an array of bytes or a zero length
array if the user entered no value for this parameter.
I
- isFile() -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Returns
true to indicate this part is a file.
- isFile() -
类 cn.dreampie.upload.multipart.Part 中的方法
- Returns true if this Part is a FilePart.
- isParam() -
类 cn.dreampie.upload.multipart.ParamPart 中的方法
- Returns
true to indicate this part is a parameter.
- isParam() -
类 cn.dreampie.upload.multipart.Part 中的方法
- Returns true if this Part is a ParamPart.
L
- LimitedServletInputStream - cn.dreampie.upload.multipart 中的 类
- 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. - LimitedServletInputStream(InputStream, int) -
类 cn.dreampie.upload.multipart.LimitedServletInputStream 的构造方法
- Creates a
LimitedServletInputStream with the specified
length limit that wraps the provided ServletInputStream.
M
- MacBinaryDecoderOutputStream - cn.dreampie.upload.multipart 中的 类
- A
MacBinaryDecoderOutput filters MacBinary files to normal
files on the fly; optimized for speed more than readability. - MacBinaryDecoderOutputStream(OutputStream) -
类 cn.dreampie.upload.multipart.MacBinaryDecoderOutputStream 的构造方法
-
- MultipartParser - cn.dreampie.upload.multipart 中的 类
- A utility class to handle
multipart/form-data requests,
the kind of requests that support file uploads. - MultipartParser(HttpRequest, int) -
类 cn.dreampie.upload.multipart.MultipartParser 的构造方法
- Creates a
MultipartParser from the specified request,
which limits the upload size to the specified length, buffers for
performance and prevent attempts to read past the amount specified
by the Content-Length.
- MultipartParser(HttpRequest, int, boolean, boolean) -
类 cn.dreampie.upload.multipart.MultipartParser 的构造方法
- Creates a
MultipartParser from the specified request,
which limits the upload size to the specified length, and optionally
buffers for performance and prevents attempts to read past the amount
specified by the Content-Length.
- MultipartParser(HttpRequest, int, boolean, boolean, String) -
类 cn.dreampie.upload.multipart.MultipartParser 的构造方法
- Creates a
MultipartParser from the specified request,
which limits the upload size to the specified length, and optionally
buffers for performance and prevents attempts to read past the amount
specified by the Content-Length, and with a specified encoding.
- MultipartRequest - cn.dreampie.upload 中的 类
- A utility class to handle
multipart/form-data requests,
the kind of requests that support file uploads. - MultipartRequest(HttpRequest, String) -
类 cn.dreampie.upload.MultipartRequest 的构造方法
- Constructs a new MultipartRequest to handle the specified request,
saving any uploaded files to the given directory, and limiting the
upload size to 1 Megabyte.
- MultipartRequest(HttpRequest, String, int) -
类 cn.dreampie.upload.MultipartRequest 的构造方法
- Constructs a new MultipartRequest to handle the specified request,
saving any uploaded files to the given directory, and limiting the
upload size to the specified length.
- MultipartRequest(HttpRequest, String, String) -
类 cn.dreampie.upload.MultipartRequest 的构造方法
- Constructs a new MultipartRequest to handle the specified request,
saving any uploaded files to the given directory, and limiting the
upload size to the specified length.
- MultipartRequest(HttpRequest, String, int, FileRenamer) -
类 cn.dreampie.upload.MultipartRequest 的构造方法
- Constructs a new MultipartRequest to handle the specified request,
saving any uploaded files to the given directory, and limiting the
upload size to the specified length.
- MultipartRequest(HttpRequest, String, int, String) -
类 cn.dreampie.upload.MultipartRequest 的构造方法
- Constructs a new MultipartRequest to handle the specified request,
saving any uploaded files to the given directory, and limiting the
upload size to the specified length.
- MultipartRequest(HttpRequest, String, int, String, FileRenamer) -
类 cn.dreampie.upload.MultipartRequest 的构造方法
- Constructs a new MultipartRequest to handle the specified request,
saving any uploaded files to the given directory, and limiting the
upload size to the specified length.
- MultipartRequest(HttpRequest, File, int, String, FileRenamer, String[], String[]) -
类 cn.dreampie.upload.MultipartRequest 的构造方法
- Constructs a new MultipartRequest to handle the specified request,
saving any uploaded files to the given directory, and limiting the
upload size to the specified length.
P
- ParamPart - cn.dreampie.upload.multipart 中的 类
- A
ParamPart is an upload part which represents a normal
INPUT (for example a non TYPE="file") form
parameter. - params -
类 cn.dreampie.upload.MultipartRequest 中的变量
-
- Part - cn.dreampie.upload.multipart 中的 类
- A
Part is an abstract upload part which represents an
INPUT form element in a multipart/form-data form
submission. - PartInputStream - cn.dreampie.upload.multipart 中的 类
- A
PartInputStream filters a ServletInputStream,
providing access to a single MIME part contained with in which ends with
the boundary specified.
R
- read() -
类 cn.dreampie.upload.multipart.BufferedServletInputStream 中的方法
- Implement buffering on top of the
read method of
the wrapped ServletInputStream.
- read(byte[], int, int) -
类 cn.dreampie.upload.multipart.BufferedServletInputStream 中的方法
- Implement buffering on top of the
read method of
the wrapped ServletInputStream.
- read() -
类 cn.dreampie.upload.multipart.LimitedServletInputStream 中的方法
- Implement length limitation on top of the
read method of
the wrapped ServletInputStream.
- read(byte[], int, int) -
类 cn.dreampie.upload.multipart.LimitedServletInputStream 中的方法
- Implement length limitation on top of the
read method of
the wrapped ServletInputStream.
- read() -
类 cn.dreampie.upload.multipart.PartInputStream 中的方法
- See the general contract of the
read
method of InputStream.
- read(byte[]) -
类 cn.dreampie.upload.multipart.PartInputStream 中的方法
- See the general contract of the
read
method of InputStream.
- read(byte[], int, int) -
类 cn.dreampie.upload.multipart.PartInputStream 中的方法
- See the general contract of the
read
method of InputStream.
- readLine(byte[], int, int) -
类 cn.dreampie.upload.multipart.BufferedServletInputStream 中的方法
- Implement buffering on top of the
readLine method of
the wrapped ServletInputStream.
- readLine(byte[], int, int) -
类 cn.dreampie.upload.multipart.LimitedServletInputStream 中的方法
- Implement length limitation on top of the
readLine method of
the wrapped ServletInputStream.
- readLine(byte[], int, int) -
类 cn.dreampie.upload.multipart.ServletInputStream 中的方法
-
- readNextPart() -
类 cn.dreampie.upload.multipart.MultipartParser 中的方法
- Read the next part arriving in the stream.
S
- ServletInputStream - cn.dreampie.upload.multipart 中的 类
- Created by ice on 15-1-6.
- ServletInputStream() -
类 cn.dreampie.upload.multipart.ServletInputStream 的构造方法
-
- setEncoding(String) -
类 cn.dreampie.upload.multipart.MultipartParser 中的方法
- Sets the encoding used to parse from here onward.
- setRenamer(FileRenamer) -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Puts in place the specified renamer for handling file name collisions.
W
- write(int) -
类 cn.dreampie.upload.multipart.MacBinaryDecoderOutputStream 中的方法
-
- write(byte[]) -
类 cn.dreampie.upload.multipart.MacBinaryDecoderOutputStream 中的方法
-
- write(byte[], int, int) -
类 cn.dreampie.upload.multipart.MacBinaryDecoderOutputStream 中的方法
-
- writeTo(File) -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Write this file part to a file or directory.
- writeTo(OutputStream) -
类 cn.dreampie.upload.multipart.FilePart 中的方法
- Write this file part to the given output stream.
A B C F G I L M P R S W
Copyright © 2015. All rights reserved.