A B C D E F G H I L M P R S T U V W

A

available() - 类 com.oreilly.servlet.multipart.PartInputStream 中的方法
Returns the number of bytes that can be read from this input stream without blocking.

B

Base64Decoder - com.oreilly.servlet 中的 类
A class to decode Base64 streams and strings.
Base64Decoder(InputStream) - 类 com.oreilly.servlet.Base64Decoder 的构造方法
Constructs a new Base64 decoder that reads input from the given InputStream.
Base64Encoder - com.oreilly.servlet 中的 类
A class to encode Base64 streams and strings.
Base64Encoder(OutputStream) - 类 com.oreilly.servlet.Base64Encoder 的构造方法
Constructs a new Base64 encoder that writes output to the given OutputStream.
bcc(String) - 类 com.oreilly.servlet.MailMessage 中的方法
Sets the bcc address.
bind() - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 中的方法
Binds the servlet to the registry.
bind() - 类 com.oreilly.servlet.RemoteHttpServlet 中的方法
Binds the servlet to the registry.
BufferedServletInputStream - com.oreilly.servlet.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(ServletInputStream) - 类 com.oreilly.servlet.multipart.BufferedServletInputStream 的构造方法
Creates a BufferedServletInputStream that wraps the provided ServletInputStream.

C

CacheHttpServlet - com.oreilly.servlet 中的 类
A superclass for HTTP servlets that wish to have their output cached and automatically resent as appropriate according to the servlet's getLastModified() method.
CacheHttpServlet() - 类 com.oreilly.servlet.CacheHttpServlet 的构造方法
 
cc(String) - 类 com.oreilly.servlet.MailMessage 中的方法
Sets the cc address.
close() - 类 com.oreilly.servlet.Base64Encoder 中的方法
Closes the stream, this MUST be called to ensure proper padding is written to the end of the output stream.
close() - 类 com.oreilly.servlet.multipart.PartInputStream 中的方法
Closes this input stream and releases any system resources associated with the stream.
com.oreilly.servlet - 软件包 com.oreilly.servlet
 
com.oreilly.servlet.multipart - 软件包 com.oreilly.servlet.multipart
 
CookieNotFoundException - com.oreilly.servlet 中的 异常
Thrown to indicate a cookie does not exist.
CookieNotFoundException() - 异常 com.oreilly.servlet.CookieNotFoundException 的构造方法
Constructs a new CookieNotFoundException with no detail message.
CookieNotFoundException(String) - 异常 com.oreilly.servlet.CookieNotFoundException 的构造方法
Constructs a new CookieNotFoundException with the specified detail message.
CookieParser - com.oreilly.servlet 中的 类
A class to simplify cookie retrieval.
CookieParser(HttpServletRequest) - 类 com.oreilly.servlet.CookieParser 的构造方法
Constructs a new CookieParser to handle the cookies of the given request.

D

DaemonHttpServlet - com.oreilly.servlet 中的 类
A superclass for HTTP servlets that wish to accept raw socket connections.
DaemonHttpServlet() - 类 com.oreilly.servlet.DaemonHttpServlet 的构造方法
 
decode(String) - 类 com.oreilly.servlet.Base64Decoder 中的静态方法
Returns the decoded form of the given encoded string, as a String.
decodeToBytes(String) - 类 com.oreilly.servlet.Base64Decoder 中的静态方法
Returns the decoded form of the given encoded string, as bytes.
DEFAULT_PORT - 类 com.oreilly.servlet.DaemonHttpServlet 中的变量
The default listening port (1313)
DefaultFileRenamePolicy - com.oreilly.servlet.multipart 中的 类
Implements a renaming policy that adds increasing integers to the body of any file that collides.
DefaultFileRenamePolicy() - 类 com.oreilly.servlet.multipart.DefaultFileRenamePolicy 的构造方法
 
destroy() - 类 com.oreilly.servlet.DaemonHttpServlet 中的方法
Halts the thread listening for socket connections.
destroy() - 类 com.oreilly.servlet.MultipartFilter 中的方法
 
destroy() - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 中的方法
Halts the servlet's RMI operations and halts the thread listening for socket connections.
destroy() - 类 com.oreilly.servlet.RemoteHttpServlet 中的方法
Halts the servlet's RMI operations.
doFilter(ServletRequest, ServletResponse, FilterChain) - 类 com.oreilly.servlet.MultipartFilter 中的方法
 

E

encode(String) - 类 com.oreilly.servlet.Base64Encoder 中的静态方法
Returns the encoded form of the given unencoded string.
encode(byte[]) - 类 com.oreilly.servlet.Base64Encoder 中的静态方法
Returns the encoded form of the given unencoded string.
endResponse() - 类 com.oreilly.servlet.MultipartResponse 中的方法
Ends a single response.
ExceededSizeException - com.oreilly.servlet.multipart 中的 异常
Thrown to indicate an upload exceeded the maximum size.
ExceededSizeException() - 异常 com.oreilly.servlet.multipart.ExceededSizeException 的构造方法
Constructs a new ExceededSizeException with no detail message.
ExceededSizeException(String) - 异常 com.oreilly.servlet.multipart.ExceededSizeException 的构造方法
Constructs a new ExceededSizeException with the specified detail message.

F

FilePart - com.oreilly.servlet.multipart 中的 类
A FilePart is an upload part which represents a INPUT TYPE="file" form parameter.
FileRenamePolicy - com.oreilly.servlet.multipart 中的 接口
An interface to provide a pluggable file renaming policy, particularly useful to handle naming conflicts with an existing file.
files - 类 com.oreilly.servlet.MultipartRequest 中的变量
 
finish() - 类 com.oreilly.servlet.MultipartResponse 中的方法
Finishes the multipart response.
from(String) - 类 com.oreilly.servlet.MailMessage 中的方法
Sets the from address.

G

getBooleanCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a boolean
getBooleanCookie(String, boolean) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a boolean, with a default.
getBooleanParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a boolean, with true indicated by "true", "on", or "yes" in any letter case, false indicated by "false", "off", or "no" in any letter case.
getBooleanParameter(String, boolean) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a boolean, with a default.
getBundle() - 类 com.oreilly.servlet.LocaleNegotiator 中的方法
Gets the chosen bundle.
getByteCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a byte
getByteCookie(String, byte) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a byte, with a default.
getByteParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a byte
getByteParameter(String, byte) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a byte, with a default.
getCharCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a char
getCharCookie(String, char) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a char, with a default.
getCharParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a char
getCharParameter(String, char) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a char, with a default.
getCharset() - 类 com.oreilly.servlet.LocaleNegotiator 中的方法
Gets the chosen charset.
getCharset(Locale) - 类 com.oreilly.servlet.LocaleToCharsetMap 中的静态方法
Gets the preferred charset for the given locale, or null if the locale is not recognized.
getCharsetForLocale(Locale, String) - 类 com.oreilly.servlet.LocaleNegotiator 中的方法
Gets the best charset for a given locale, selecting from a charset list.
getContentType() - 类 com.oreilly.servlet.multipart.FilePart 中的方法
Returns the content type of the file data contained within.
getContentType(String) - 类 com.oreilly.servlet.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.
getContentType(String) - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getDoubleCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a double
getDoubleCookie(String, double) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a double, with a default.
getDoubleParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a double
getDoubleParameter(String, double) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a double, with a default.
getFile(String) - 类 com.oreilly.servlet.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.
getFile(String) - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getFileName() - 类 com.oreilly.servlet.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() - 类 com.oreilly.servlet.MultipartRequest 中的方法
Returns the names of all the uploaded files as an Enumeration of Strings.
getFileNames() - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getFilePath() - 类 com.oreilly.servlet.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.
getFilesystemName(String) - 类 com.oreilly.servlet.MultipartRequest 中的方法
Returns the filesystem name of the specified file, or null if the file was not included in the upload.
getFilesystemName(String) - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getFloatCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a float
getFloatCookie(String, float) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a float, with a default.
getFloatParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a float
getFloatParameter(String, float) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a float, with a default.
getInputStream() - 类 com.oreilly.servlet.multipart.FilePart 中的方法
Returns an input stream which contains the contents of the file supplied.
getIntCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a int
getIntCookie(String, int) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a int, with a default.
getIntParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a int
getIntParameter(String, int) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a int, with a default.
getJavaVersion() - 类 com.oreilly.servlet.VersionDetector 中的静态方法
Determines the JDK version number.
getLocale() - 类 com.oreilly.servlet.LocaleNegotiator 中的方法
Gets the chosen locale.
getLongCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a long
getLongCookie(String, long) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a long, with a default.
getLongParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a long
getLongParameter(String, long) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a long, with a default.
getMissingParameters(String[]) - 类 com.oreilly.servlet.ParameterParser 中的方法
Determines which of the required parameters were missing from the request.
getName() - 类 com.oreilly.servlet.multipart.Part 中的方法
Returns the name of the form element that this Part corresponds to.
getOriginalFileName(String) - 类 com.oreilly.servlet.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.
getOriginalFileName(String) - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getParameter(String) - 类 com.oreilly.servlet.MultipartRequest 中的方法
Returns the value of the named parameter as a String, or null if the parameter was not sent or was sent without a value.
getParameter(String) - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getParameterMap() - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getParameterNames() - 类 com.oreilly.servlet.MultipartRequest 中的方法
Returns the names of all the parameters as an Enumeration of Strings.
getParameterNames() - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getParameterValues(String) - 类 com.oreilly.servlet.MultipartRequest 中的方法
Returns the values of the named parameter as a String array, or null if the parameter was not sent.
getParameterValues(String) - 类 com.oreilly.servlet.MultipartWrapper 中的方法
 
getPrintStream() - 类 com.oreilly.servlet.MailMessage 中的方法
Returns a PrintStream that can be used to write the body of the message.
getRegistryName() - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 中的方法
Returns the name under which the servlet should be bound in the registry.
getRegistryName() - 类 com.oreilly.servlet.RemoteHttpServlet 中的方法
Returns the name under which the servlet should be bound in the registry.
getRegistryPort() - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 中的方法
Returns the port where the registry should be running.
getRegistryPort() - 类 com.oreilly.servlet.RemoteHttpServlet 中的方法
Returns the port where the registry should be running.
getResource(ServletContext, String) - 类 com.oreilly.servlet.ServletUtils 中的静态方法
Gets a reference to the given resource within the given context, making sure not to serve the contents of WEB-INF, META-INF, or to display .jsp file source.
getServlet(String, ServletRequest, ServletContext) - 类 com.oreilly.servlet.ServletUtils 中的静态方法
Gets a reference to the named servlet, attempting to load it through an HTTP request if necessary.
getServletVersion() - 类 com.oreilly.servlet.VersionDetector 中的静态方法
Determines the Servlet API version number.
getShortCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a short
getShortCookie(String, short) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a short, with a default.
getShortParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a short
getShortParameter(String, short) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a short, with a default.
getSocketPort() - 类 com.oreilly.servlet.DaemonHttpServlet 中的方法
Returns the socket port on which the servlet will listen.
getStackTraceAsString(Throwable) - 类 com.oreilly.servlet.ServletUtils 中的静态方法
Gets an exception's stack trace as a String
getStringCookie(String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a String
getStringCookie(String, String) - 类 com.oreilly.servlet.CookieParser 中的方法
Gets the named cookie value as a String, with a default.
getStringParameter(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a String
getStringParameter(String, String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Gets the named parameter value as a String, with a default.
getStringValue() - 类 com.oreilly.servlet.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) - 类 com.oreilly.servlet.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() - 类 com.oreilly.servlet.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.

H

handleClient(Socket) - 类 com.oreilly.servlet.DaemonHttpServlet 中的方法
Handles a new socket connection.
HttpMessage - com.oreilly.servlet 中的 类
A class to simplify HTTP applet-server communication.
HttpMessage(URL) - 类 com.oreilly.servlet.HttpMessage 的构造方法
Constructs a new HttpMessage that can be used to communicate with the servlet at the specified URL.
HttpsMessage - com.oreilly.servlet 中的 类
A class to simplify HTTP/HTTPS client-server communication.
HttpsMessage(String) - 类 com.oreilly.servlet.HttpsMessage 的构造方法
Constructs a new HttpsMessage that can be used to communicate with the servlet at the specified URL using HTTPS.

I

init(ServletConfig) - 类 com.oreilly.servlet.DaemonHttpServlet 中的方法
Begins a thread listening for socket connections.
init(FilterConfig) - 类 com.oreilly.servlet.MultipartFilter 中的方法
 
init(ServletConfig) - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 中的方法
Begins the servlet's RMI operations and begins a thread listening for socket connections.
init(ServletConfig) - 类 com.oreilly.servlet.RemoteHttpServlet 中的方法
Begins the servlet's RMI operations.
isFile() - 类 com.oreilly.servlet.multipart.FilePart 中的方法
Returns true to indicate this part is a file.
isFile() - 类 com.oreilly.servlet.multipart.Part 中的方法
Returns true if this Part is a FilePart.
isParam() - 类 com.oreilly.servlet.multipart.ParamPart 中的方法
Returns true to indicate this part is a parameter.
isParam() - 类 com.oreilly.servlet.multipart.Part 中的方法
Returns true if this Part is a ParamPart.

L

LimitedServletInputStream - com.oreilly.servlet.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(ServletInputStream, int) - 类 com.oreilly.servlet.multipart.LimitedServletInputStream 的构造方法
Creates a LimitedServletInputStream with the specified length limit that wraps the provided ServletInputStream.
LocaleNegotiator - com.oreilly.servlet 中的 类
A class to aid in servlet internationalization.
LocaleNegotiator(String, String, String) - 类 com.oreilly.servlet.LocaleNegotiator 的构造方法
Constructs a new LocaleNegotiator for the given bundle name, language list, and charset list.
LocaleToCharsetMap - com.oreilly.servlet 中的 类
A mapping to determine the (somewhat arbitrarily) preferred charset for a given locale.
LocaleToCharsetMap() - 类 com.oreilly.servlet.LocaleToCharsetMap 的构造方法
 

M

MacBinaryDecoderOutputStream - com.oreilly.servlet.multipart 中的 类
A MacBinaryDecoderOutput filters MacBinary files to normal files on the fly; optimized for speed more than readability.
MacBinaryDecoderOutputStream(OutputStream) - 类 com.oreilly.servlet.multipart.MacBinaryDecoderOutputStream 的构造方法
 
MailMessage - com.oreilly.servlet 中的 类
A class to help send SMTP email.
MailMessage() - 类 com.oreilly.servlet.MailMessage 的构造方法
Constructs a new MailMessage to send an email.
MailMessage(String) - 类 com.oreilly.servlet.MailMessage 的构造方法
Constructs a new MailMessage to send an email.
main(String[]) - 类 com.oreilly.servlet.Base64Decoder 中的静态方法
 
main(String[]) - 类 com.oreilly.servlet.Base64Encoder 中的静态方法
 
MultipartFilter - com.oreilly.servlet 中的 类
A filter for easy semi-automatic handling of multipart/form-data requests (file uploads).
MultipartFilter() - 类 com.oreilly.servlet.MultipartFilter 的构造方法
 
MultipartParser - com.oreilly.servlet.multipart 中的 类
A utility class to handle multipart/form-data requests, the kind of requests that support file uploads.
MultipartParser(HttpServletRequest, int) - 类 com.oreilly.servlet.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(HttpServletRequest, int, boolean, boolean) - 类 com.oreilly.servlet.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(HttpServletRequest, int, boolean, boolean, String) - 类 com.oreilly.servlet.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 - com.oreilly.servlet 中的 类
A utility class to handle multipart/form-data requests, the kind of requests that support file uploads.
MultipartRequest(HttpServletRequest, String) - 类 com.oreilly.servlet.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(HttpServletRequest, String, int) - 类 com.oreilly.servlet.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(HttpServletRequest, String, String) - 类 com.oreilly.servlet.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(HttpServletRequest, String, int, FileRenamePolicy) - 类 com.oreilly.servlet.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(HttpServletRequest, String, int, String) - 类 com.oreilly.servlet.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(HttpServletRequest, String, int, String, FileRenamePolicy) - 类 com.oreilly.servlet.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(ServletRequest, String) - 类 com.oreilly.servlet.MultipartRequest 的构造方法
Constructor with an old signature, kept for backward compatibility.
MultipartRequest(ServletRequest, String, int) - 类 com.oreilly.servlet.MultipartRequest 的构造方法
Constructor with an old signature, kept for backward compatibility.
MultipartResponse - com.oreilly.servlet 中的 类
A utility class to generate multipart/x-mixed-replace responses, the kind of responses that implement server push.
MultipartResponse(HttpServletResponse) - 类 com.oreilly.servlet.MultipartResponse 的构造方法
Constructs a new MultipartResponse to send content to the given servlet response.
MultipartWrapper - com.oreilly.servlet 中的 类
A request wrapper to support MultipartFilter.
MultipartWrapper(HttpServletRequest, String) - 类 com.oreilly.servlet.MultipartWrapper 的构造方法
 

P

ParameterNotFoundException - com.oreilly.servlet 中的 异常
Thrown to indicate a parameter does not exist.
ParameterNotFoundException() - 异常 com.oreilly.servlet.ParameterNotFoundException 的构造方法
Constructs a new ParameterNotFoundException with no detail message.
ParameterNotFoundException(String) - 异常 com.oreilly.servlet.ParameterNotFoundException 的构造方法
Constructs a new ParameterNotFoundException with the specified detail message.
ParameterParser - com.oreilly.servlet 中的 类
A class to simplify parameter handling.
ParameterParser(ServletRequest) - 类 com.oreilly.servlet.ParameterParser 的构造方法
Constructs a new ParameterParser to handle the parameters of the given request.
parameters - 类 com.oreilly.servlet.MultipartRequest 中的变量
 
ParamPart - com.oreilly.servlet.multipart 中的 类
A ParamPart is an upload part which represents a normal INPUT (for example a non TYPE="file") form parameter.
Part - com.oreilly.servlet.multipart 中的 类
A Part is an abstract upload part which represents an INPUT form element in a multipart/form-data form submission.
PartInputStream - com.oreilly.servlet.multipart 中的 类
A PartInputStream filters a ServletInputStream, providing access to a single MIME part contained with in which ends with the boundary specified.

R

read() - 类 com.oreilly.servlet.Base64Decoder 中的方法
Returns the next decoded character from the stream, or -1 if end of stream was reached.
read(byte[], int, int) - 类 com.oreilly.servlet.Base64Decoder 中的方法
Reads decoded data into an array of bytes and returns the actual number of bytes read, or -1 if end of stream was reached.
read() - 类 com.oreilly.servlet.multipart.BufferedServletInputStream 中的方法
Implement buffering on top of the read method of the wrapped ServletInputStream.
read(byte[], int, int) - 类 com.oreilly.servlet.multipart.BufferedServletInputStream 中的方法
Implement buffering on top of the read method of the wrapped ServletInputStream.
read() - 类 com.oreilly.servlet.multipart.LimitedServletInputStream 中的方法
Implement length limitation on top of the read method of the wrapped ServletInputStream.
read(byte[], int, int) - 类 com.oreilly.servlet.multipart.LimitedServletInputStream 中的方法
Implement length limitation on top of the read method of the wrapped ServletInputStream.
read() - 类 com.oreilly.servlet.multipart.PartInputStream 中的方法
See the general contract of the read method of InputStream.
read(byte[]) - 类 com.oreilly.servlet.multipart.PartInputStream 中的方法
See the general contract of the read method of InputStream.
read(byte[], int, int) - 类 com.oreilly.servlet.multipart.PartInputStream 中的方法
See the general contract of the read method of InputStream.
readLine(byte[], int, int) - 类 com.oreilly.servlet.multipart.BufferedServletInputStream 中的方法
Implement buffering on top of the readLine method of the wrapped ServletInputStream.
readLine(byte[], int, int) - 类 com.oreilly.servlet.multipart.LimitedServletInputStream 中的方法
Implement length limitation on top of the readLine method of the wrapped ServletInputStream.
readNextPart() - 类 com.oreilly.servlet.multipart.MultipartParser 中的方法
Read the next part arriving in the stream.
registry - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 中的变量
The registry for the servlet
registry - 类 com.oreilly.servlet.RemoteHttpServlet 中的变量
The registry for the servlet
RemoteDaemonHttpServlet - com.oreilly.servlet 中的 类
A superclass for any HTTP servlet that wishes to act as an RMI server and, additionally, accept raw socket connections.
RemoteDaemonHttpServlet() - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 的构造方法
 
RemoteHttpServlet - com.oreilly.servlet 中的 类
A superclass for any HTTP servlet that wishes to act as an RMI server.
RemoteHttpServlet() - 类 com.oreilly.servlet.RemoteHttpServlet 的构造方法
 
rename(File) - 类 com.oreilly.servlet.multipart.DefaultFileRenamePolicy 中的方法
 
rename(File) - 接口 com.oreilly.servlet.multipart.FileRenamePolicy 中的方法
Returns a File object holding a new name for the specified file.
returnFile(String, OutputStream) - 类 com.oreilly.servlet.ServletUtils 中的静态方法
Sends the contents of the specified file to the output stream
returnURL(URL, OutputStream) - 类 com.oreilly.servlet.ServletUtils 中的静态方法
Sends the contents of the specified URL to the output stream
returnURL(URL, Writer) - 类 com.oreilly.servlet.ServletUtils 中的静态方法
Sends the contents of the specified URL to the Writer (commonly either a PrintWriter or JspWriter)

S

sendAndClose() - 类 com.oreilly.servlet.MailMessage 中的方法
Sends the message and closes the connection to the server.
sendGetMessage() - 类 com.oreilly.servlet.HttpMessage 中的方法
Performs a GET request to the servlet, with no query string.
sendGetMessage(Properties) - 类 com.oreilly.servlet.HttpMessage 中的方法
Performs a GET request to the servlet, building a query string from the supplied properties list.
sendPostMessage() - 类 com.oreilly.servlet.HttpMessage 中的方法
Performs a POST request to the servlet, with no query string.
sendPostMessage(Properties) - 类 com.oreilly.servlet.HttpMessage 中的方法
Performs a POST request to the servlet, building post data from the supplied properties list.
sendPostMessage(Serializable) - 类 com.oreilly.servlet.HttpMessage 中的方法
Performs a POST request to the servlet, uploading a serialized object.
service(HttpServletRequest, HttpServletResponse) - 类 com.oreilly.servlet.CacheHttpServlet 中的方法
 
ServletUtils - com.oreilly.servlet 中的 类
A collection of static utility methods useful to servlets.
ServletUtils() - 类 com.oreilly.servlet.ServletUtils 的构造方法
 
setAuthorization(String, String) - 类 com.oreilly.servlet.HttpMessage 中的方法
Sets the authorization information for the request (using BASIC authentication via the HTTP Authorization header).
setCharacterEncoding(String) - 类 com.oreilly.servlet.ParameterParser 中的方法
Sets the character encoding (charset) of the request to help the parser properly decode parameter values.
setCookie(String, String) - 类 com.oreilly.servlet.HttpMessage 中的方法
Sets a request cookie with the given name and value.
setEncoding(String) - 类 com.oreilly.servlet.multipart.MultipartParser 中的方法
Sets the encoding used to parse from here onward.
setHeader(String, String) - 类 com.oreilly.servlet.HttpMessage 中的方法
Sets a request header with the given name and value.
setHeader(String, String) - 类 com.oreilly.servlet.MailMessage 中的方法
Sets the named header to the given value.
setRenamePolicy(FileRenamePolicy) - 类 com.oreilly.servlet.multipart.FilePart 中的方法
Puts in place the specified policy for handling file name collisions.
setSubject(String) - 类 com.oreilly.servlet.MailMessage 中的方法
Sets the subject of the mail message.
split(String, String) - 类 com.oreilly.servlet.ServletUtils 中的静态方法
Splits a String into pieces according to a delimiter.
startResponse(String) - 类 com.oreilly.servlet.MultipartResponse 中的方法
Begins a single response with the specified content type.

T

to(String) - 类 com.oreilly.servlet.MailMessage 中的方法
Sets the to address.

U

unbind() - 类 com.oreilly.servlet.RemoteDaemonHttpServlet 中的方法
Unbinds the servlet from the registry.
unbind() - 类 com.oreilly.servlet.RemoteHttpServlet 中的方法
Unbinds the servlet from the registry.

V

VersionDetector - com.oreilly.servlet 中的 类
A class to determine the current Servlet API version number, and the current JDK version number.
VersionDetector() - 类 com.oreilly.servlet.VersionDetector 的构造方法
 

W

write(int) - 类 com.oreilly.servlet.Base64Encoder 中的方法
Writes the given byte to the output stream in an encoded form.
write(byte[], int, int) - 类 com.oreilly.servlet.Base64Encoder 中的方法
Writes the given byte array to the output stream in an encoded form.
write(int) - 类 com.oreilly.servlet.multipart.MacBinaryDecoderOutputStream 中的方法
 
write(byte[]) - 类 com.oreilly.servlet.multipart.MacBinaryDecoderOutputStream 中的方法
 
write(byte[], int, int) - 类 com.oreilly.servlet.multipart.MacBinaryDecoderOutputStream 中的方法
 
writeTo(File) - 类 com.oreilly.servlet.multipart.FilePart 中的方法
Write this file part to a file or directory.
writeTo(OutputStream) - 类 com.oreilly.servlet.multipart.FilePart 中的方法
Write this file part to the given output stream.

A B C D E F G H I L M P R S T U V W

Copyright © 2013. All Rights Reserved.