public class Response extends java.lang.Object implements HttpServletResponse
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
appCommitted
The application commit flag.
|
protected Response |
coyoteResponse
Coyote response.
|
protected ResponseFacade |
facade
The facade associated with this response.
|
protected java.text.SimpleDateFormat |
format
Deprecated.
Unused. This will be removed in Tomcat 10
|
protected boolean |
included
The included flag.
|
protected OutputBuffer |
outputBuffer
The associated output buffer.
|
protected CoyoteOutputStream |
outputStream
The associated output stream.
|
protected CharChunk |
redirectURLCC
Recyclable buffer to hold the redirect URL.
|
protected Request |
request
The request with which this response is associated.
|
protected static StringManager |
sm |
protected UEncoder |
urlEncoder
URL encoder.
|
protected boolean |
usingOutputStream
Using output stream flag.
|
protected boolean |
usingWriter
Using writer flag.
|
protected CoyoteWriter |
writer
The associated writer.
|
SC_ACCEPTED, SC_BAD_GATEWAY, SC_BAD_REQUEST, SC_CONFLICT, SC_CONTINUE, SC_CREATED, SC_EXPECTATION_FAILED, SC_FORBIDDEN, SC_FOUND, SC_GATEWAY_TIMEOUT, SC_GONE, SC_HTTP_VERSION_NOT_SUPPORTED, SC_INTERNAL_SERVER_ERROR, SC_LENGTH_REQUIRED, SC_METHOD_NOT_ALLOWED, SC_MOVED_PERMANENTLY, SC_MOVED_TEMPORARILY, SC_MULTIPLE_CHOICES, SC_NO_CONTENT, SC_NON_AUTHORITATIVE_INFORMATION, SC_NOT_ACCEPTABLE, SC_NOT_FOUND, SC_NOT_IMPLEMENTED, SC_NOT_MODIFIED, SC_OK, SC_PARTIAL_CONTENT, SC_PAYMENT_REQUIRED, SC_PRECONDITION_FAILED, SC_PROXY_AUTHENTICATION_REQUIRED, SC_REQUEST_ENTITY_TOO_LARGE, SC_REQUEST_TIMEOUT, SC_REQUEST_URI_TOO_LONG, SC_REQUESTED_RANGE_NOT_SATISFIABLE, SC_RESET_CONTENT, SC_SEE_OTHER, SC_SERVICE_UNAVAILABLE, SC_SWITCHING_PROTOCOLS, SC_TEMPORARY_REDIRECT, SC_UNAUTHORIZED, SC_UNSUPPORTED_MEDIA_TYPE, SC_USE_PROXY| Constructor and Description |
|---|
Response() |
Response(int outputBufferSize) |
| Modifier and Type | Method and Description |
|---|---|
void |
addCookie(Cookie cookie)
Add the specified Cookie to those that will be included with this Response.
|
void |
addDateHeader(java.lang.String name,
long value)
Add the specified date header to the specified value.
|
void |
addHeader(java.lang.String name,
java.lang.String value)
Add the specified header to the specified value.
|
void |
addIntHeader(java.lang.String name,
int value)
Add the specified integer header to the specified value.
|
void |
addSessionCookieInternal(Cookie cookie)
Special method for adding a session cookie as we should be overriding any previous.
|
boolean |
containsHeader(java.lang.String name)
Has the specified header been set already in this response?
|
java.lang.String |
encodeRedirectUrl(java.lang.String url)
Deprecated.
As of Version 2.1 of the Java Servlet API, use
encodeRedirectURL() instead. |
java.lang.String |
encodeRedirectURL(java.lang.String url)
Encode the session identifier associated with this response into the specified redirect URL, if necessary.
|
java.lang.String |
encodeUrl(java.lang.String url)
Deprecated.
As of Version 2.1 of the Java Servlet API, use
encodeURL() instead. |
java.lang.String |
encodeURL(java.lang.String url)
Encode the session identifier associated with this response into the specified URL, if necessary.
|
void |
finishResponse()
Perform whatever actions are required to flush and close the output stream or writer, in a single operation.
|
void |
flushBuffer()
Flush the buffer and commit this response.
|
java.lang.String |
generateCookieString(Cookie cookie) |
int |
getBufferSize()
Returns the actual buffer size used for the response.
|
long |
getBytesWritten(boolean flush) |
java.lang.String |
getCharacterEncoding()
Returns the name of the character encoding (MIME charset) used for the body sent in this response.
|
int |
getContentLength() |
java.lang.String |
getContentType()
Returns the content type used for the MIME body sent in this response.
|
long |
getContentWritten() |
Context |
getContext() |
java.util.List<Cookie> |
getCookies() |
Response |
getCoyoteResponse() |
java.lang.String |
getHeader(java.lang.String name)
Return the value for the specified header, or
null if this header has not been set. |
java.util.Collection<java.lang.String> |
getHeaderNames()
Get the header names set for this HTTP response.
|
java.util.Collection<java.lang.String> |
getHeaders(java.lang.String name)
Return a Collection of all the header values associated with the specified header name.
|
java.util.Locale |
getLocale()
Returns the locale specified for this response using the
ServletResponse.setLocale(java.util.Locale) method. |
java.lang.String |
getMessage() |
ServletOutputStream |
getOutputStream()
Returns a
ServletOutputStream suitable for writing binary data in the response. |
java.io.PrintWriter |
getReporter()
Return a PrintWriter that can be used to render error messages, regardless of whether a stream or writer has
already been acquired.
|
Request |
getRequest() |
HttpServletResponse |
getResponse() |
int |
getStatus()
Get the HTTP status code for this Response.
|
java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>> |
getTrailerFields()
Obtain the supplier of the trailer headers.
|
java.io.PrintWriter |
getWriter()
Returns a
PrintWriter object that can send character text to the client. |
boolean |
isAppCommitted()
Application commit flag accessor.
|
boolean |
isClosed()
Closed flag accessor.
|
boolean |
isCommitted()
Has the output of this response already been committed?
|
protected boolean |
isEncodeable(java.lang.String location)
Return
true if the specified URL should be encoded with a session identifier. |
boolean |
isError()
Error flag accessor.
|
boolean |
isErrorReportRequired() |
boolean |
isSuspended()
Suspended flag accessor.
|
void |
recycle()
Release all object references, and initialize instance variables, in preparation for reuse of this object.
|
void |
reset()
Clear any content written to the buffer.
|
void |
resetBuffer()
Reset the data buffer but not any status or header information.
|
void |
resetBuffer(boolean resetWriterStreamFlags)
Reset the data buffer and the using Writer/Stream flags but not any status or header information.
|
void |
sendAcknowledgement()
Deprecated.
Unused. Will be removed in Tomcat 10. Use
sendAcknowledgement(ContinueResponseTiming). |
void |
sendAcknowledgement(ContinueResponseTiming continueResponseTiming)
Send an acknowledgement of a request.
|
void |
sendError(int status)
Send an error response with the specified status and a default message.
|
void |
sendError(int status,
java.lang.String message)
Send an error response with the specified status and message.
|
void |
sendRedirect(java.lang.String location)
Sends a redirect response to the client using the specified redirect location URL with the status code
HttpServletResponse.SC_FOUND 302 (Found), clears the response buffer and commits the response. |
void |
sendRedirect(java.lang.String location,
int status)
Internal method that allows a redirect to be sent with a status other than
HttpServletResponse.SC_FOUND
(302). |
void |
setAppCommitted(boolean appCommitted)
Set the application commit flag.
|
void |
setBufferSize(int size)
Set the buffer size to be used for this Response.
|
void |
setCharacterEncoding(java.lang.String encoding)
Overrides the name of the character encoding used in the body of the request.
|
void |
setContentLength(int length)
Set the content length (in bytes) for this Response.
|
void |
setContentLengthLong(long length)
Sets the length of the content body in the response In HTTP servlets, this method sets the HTTP Content-Length
header.
|
void |
setContentType(java.lang.String type)
Set the content type for this Response.
|
void |
setCoyoteResponse(Response coyoteResponse)
Set the Coyote response.
|
void |
setDateHeader(java.lang.String name,
long value)
Set the specified date header to the specified value.
|
boolean |
setError()
Deprecated.
This method will be changed to return void in Tomcat 11 onwards
|
boolean |
setErrorReported() |
void |
setHeader(java.lang.String name,
java.lang.String value)
Set the specified header to the specified value.
|
void |
setIntHeader(java.lang.String name,
int value)
Set the specified integer header to the specified value.
|
void |
setLocale(java.util.Locale locale)
Set the Locale that is appropriate for this response, including setting the appropriate character encoding.
|
void |
setRequest(Request request)
Set the Request with which this Response is associated.
|
void |
setResponse(HttpServletResponse applicationResponse)
Set a wrapped HttpServletResponse to pass to the application.
|
void |
setStatus(int status)
Set the HTTP status to be returned with this response.
|
void |
setStatus(int status,
java.lang.String message)
Deprecated.
As of Version 2.1 of the Java Servlet API, this method has been deprecated due to the ambiguous
meaning of the message parameter.
|
void |
setSuspended(boolean suspended)
Set the suspended flag.
|
void |
setTrailerFields(java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>> supplier)
Configure the supplier of the trailer headers.
|
protected java.lang.String |
toAbsolute(java.lang.String location)
Convert (if necessary) and return the absolute URL that represents the resource referenced by this possibly
relative URL.
|
protected java.lang.String |
toEncoded(java.lang.String url,
java.lang.String sessionId)
Return the specified URL with the specified session identifier suitably encoded.
|
protected static final StringManager sm
@Deprecated protected java.text.SimpleDateFormat format
protected Response coyoteResponse
protected final OutputBuffer outputBuffer
protected CoyoteOutputStream outputStream
protected CoyoteWriter writer
protected boolean appCommitted
protected boolean included
protected boolean usingOutputStream
protected boolean usingWriter
protected final UEncoder urlEncoder
protected final CharChunk redirectURLCC
protected Request request
protected ResponseFacade facade
public void setCoyoteResponse(Response coyoteResponse)
coyoteResponse - The Coyote responsepublic Response getCoyoteResponse()
public Context getContext()
public void recycle()
public java.util.List<Cookie> getCookies()
public long getContentWritten()
public long getBytesWritten(boolean flush)
flush - if true will perform a buffer flush firstpublic void setAppCommitted(boolean appCommitted)
appCommitted - The new application committed flag valuepublic boolean isAppCommitted()
true if the application has committed the responsepublic Request getRequest()
public void setRequest(Request request)
request - The new associated requestpublic HttpServletResponse getResponse()
ServletResponse for which this object is the facade.public void setResponse(HttpServletResponse applicationResponse)
getResponse(), wrap it and then call this method with the wrapped response.applicationResponse - The wrapped response to pass to the applicationpublic void setSuspended(boolean suspended)
suspended - The new suspended flag valuepublic boolean isSuspended()
true if the response is suspendedpublic boolean isClosed()
true if the response has been closed@Deprecated public boolean setError()
false if the error flag was already setpublic boolean isError()
true if the response has encountered an errorpublic boolean isErrorReportRequired()
public boolean setErrorReported()
public void finishResponse()
throws java.io.IOException
java.io.IOException - if an input/output error occurspublic int getContentLength()
public java.lang.String getContentType()
javax.servlet.ServletResponseServletResponse.setContentType(java.lang.String) before the response is committed. If no content type has been specified,
this method returns null. If a content type has been specified and a character encoding has been explicitly or
implicitly specified as described in ServletResponse.getCharacterEncoding(), the charset parameter is included in the
string returned. If no character encoding has been specified, the charset parameter is omitted.getContentType in interface ServletResponsenull if no content type
was set.public java.io.PrintWriter getReporter()
throws java.io.IOException
java.io.IOException - if an input/output error occurspublic void flushBuffer()
throws java.io.IOException
flushBuffer in interface ServletResponsejava.io.IOException - if an input/output error occursServletResponse.setBufferSize(int),
ServletResponse.getBufferSize(),
ServletResponse.isCommitted(),
ServletResponse.reset()public int getBufferSize()
javax.servlet.ServletResponsegetBufferSize in interface ServletResponseServletResponse.setBufferSize(int),
ServletResponse.flushBuffer(),
ServletResponse.isCommitted(),
ServletResponse.reset()public java.lang.String getCharacterEncoding()
javax.servlet.ServletResponseServletResponse.setCharacterEncoding(java.lang.String) and ServletResponse.setContentType(java.lang.String)ServletResponse.setLocale(java.util.Locale)ServletContext.setRequestCharacterEncoding(String)ServletResponse.setCharacterEncoding(java.lang.String), ServletResponse.setContentType(java.lang.String) or ServletResponse.setLocale(java.util.Locale) after
getWriter has been called or after the response has been committed have no effect on the character
encoding. If no character encoding has been specified, ISO-8859-1 is returned.
See RFC 2047 (http://www.ietf.org/rfc/rfc2047.txt) for more information about character encoding and MIME.
getCharacterEncoding in interface ServletResponsepublic ServletOutputStream getOutputStream() throws java.io.IOException
javax.servlet.ServletResponseServletOutputStream suitable for writing binary data in the response. The servlet container
does not encode the binary data.
Calling flush() on the ServletOutputStream commits the response. Either this method or ServletResponse.getWriter() may be
called to write the body, not both.
getOutputStream in interface ServletResponsejava.lang.IllegalStateException - if getWriter has already been called for this responsejava.io.IOException - if an input/output error occursServletResponse.getWriter()public java.util.Locale getLocale()
javax.servlet.ServletResponseServletResponse.setLocale(java.util.Locale) method. Calls made to
setLocale after the response is committed have no effect.getLocale in interface ServletResponseServletResponse.setLocale(java.util.Locale)public java.io.PrintWriter getWriter()
throws java.io.IOException
javax.servlet.ServletResponsePrintWriter object that can send character text to the client. The
PrintWriter uses the character encoding returned by ServletResponse.getCharacterEncoding(). If the response's
character encoding has not been specified as described in getCharacterEncoding (i.e., the method
just returns the default value ISO-8859-1), getWriter updates it to
ISO-8859-1.
Calling flush() on the PrintWriter commits the response.
Either this method or ServletResponse.getOutputStream() may be called to write the body, not both.
getWriter in interface ServletResponsejava.lang.IllegalStateException - if getOutputStream has already been called for this responsejava.io.IOException - if an input/output error occursServletResponse.getOutputStream(),
ServletResponse.setCharacterEncoding(java.lang.String)public boolean isCommitted()
isCommitted in interface ServletResponsetrue if the response has been committedServletResponse.setBufferSize(int),
ServletResponse.getBufferSize(),
ServletResponse.flushBuffer(),
ServletResponse.reset()public void reset()
reset in interface ServletResponsejava.lang.IllegalStateException - if this response has already been committedServletResponse.setBufferSize(int),
ServletResponse.getBufferSize(),
ServletResponse.flushBuffer(),
ServletResponse.isCommitted()public void resetBuffer()
resetBuffer in interface ServletResponsejava.lang.IllegalStateException - if the response has already been committedServletResponse.setBufferSize(int),
ServletResponse.getBufferSize(),
ServletResponse.isCommitted(),
ServletResponse.reset()public void resetBuffer(boolean resetWriterStreamFlags)
resetWriterStreamFlags - true if the internal usingWriter,
usingOutputStream, isCharacterEncodingSet flags
should also be resetjava.lang.IllegalStateException - if the response has already been committedpublic void setBufferSize(int size)
setBufferSize in interface ServletResponsesize - The new buffer sizejava.lang.IllegalStateException - if this method is called after output has been committed for this responseServletResponse.getBufferSize(),
ServletResponse.flushBuffer(),
ServletResponse.isCommitted(),
ServletResponse.reset()public void setContentLength(int length)
setContentLength in interface ServletResponselength - The new content lengthpublic void setContentLengthLong(long length)
javax.servlet.ServletResponsesetContentLengthLong in interface ServletResponselength - an integer specifying the length of the content being returned to the client; sets the
Content-Length headerpublic void setContentType(java.lang.String type)
setContentType in interface ServletResponsetype - The new content typeServletResponse.setLocale(java.util.Locale),
ServletResponse.setCharacterEncoding(java.lang.String),
ServletResponse.getOutputStream(),
ServletResponse.getWriter()public void setCharacterEncoding(java.lang.String encoding)
setCharacterEncoding in interface ServletResponseencoding - String containing the name of the character encoding.#setLocalepublic void setLocale(java.util.Locale locale)
setLocale in interface ServletResponselocale - The new localeServletResponse.getLocale(),
ServletResponse.setContentType(java.lang.String),
ServletResponse.setCharacterEncoding(java.lang.String)public java.lang.String getHeader(java.lang.String name)
javax.servlet.http.HttpServletResponsenull if this header has not been set. If more than one
value was added for this name, only the first is returned; use HttpServletResponse.getHeaders(String) to retrieve all of
them.getHeader in interface HttpServletResponsename - Header name to look uppublic java.util.Collection<java.lang.String> getHeaderNames()
javax.servlet.http.HttpServletResponsegetHeaderNames in interface HttpServletResponsepublic java.util.Collection<java.lang.String> getHeaders(java.lang.String name)
javax.servlet.http.HttpServletResponsegetHeaders in interface HttpServletResponsename - Header name to look uppublic java.lang.String getMessage()
sendError() for this Response.public int getStatus()
javax.servlet.http.HttpServletResponsegetStatus in interface HttpServletResponsepublic void addCookie(Cookie cookie)
addCookie in interface HttpServletResponsecookie - Cookie to be addedpublic void addSessionCookieInternal(Cookie cookie)
cookie - The new session cookie to add the responsepublic java.lang.String generateCookieString(Cookie cookie)
public void addDateHeader(java.lang.String name,
long value)
addDateHeader in interface HttpServletResponsename - Name of the header to setvalue - Date value to be setHttpServletResponse.setDateHeader(java.lang.String, long)public void addHeader(java.lang.String name,
java.lang.String value)
addHeader in interface HttpServletResponsename - Name of the header to setvalue - Value to be setHttpServletResponse.setHeader(java.lang.String, java.lang.String)public void addIntHeader(java.lang.String name,
int value)
addIntHeader in interface HttpServletResponsename - Name of the header to setvalue - Integer value to be setHttpServletResponse.setIntHeader(java.lang.String, int)public boolean containsHeader(java.lang.String name)
containsHeader in interface HttpServletResponsename - Name of the header to checktrue if the header has been setpublic void setTrailerFields(java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>> supplier)
javax.servlet.http.HttpServletResponsesetTrailerFields in interface HttpServletResponsesupplier - The supplier for the trailer headerspublic java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>> getTrailerFields()
javax.servlet.http.HttpServletResponsegetTrailerFields in interface HttpServletResponsepublic java.lang.String encodeRedirectURL(java.lang.String url)
encodeRedirectURL in interface HttpServletResponseurl - URL to be encodedtrue if the URL was encodedHttpServletResponse.sendRedirect(java.lang.String),
HttpServletResponse.encodeUrl(java.lang.String)@Deprecated public java.lang.String encodeRedirectUrl(java.lang.String url)
encodeRedirectURL() instead.encodeRedirectUrl in interface HttpServletResponseurl - URL to be encodedtrue if the URL was encodedpublic java.lang.String encodeURL(java.lang.String url)
encodeURL in interface HttpServletResponseurl - URL to be encodedtrue if the URL was encoded@Deprecated public java.lang.String encodeUrl(java.lang.String url)
encodeURL() instead.encodeUrl in interface HttpServletResponseurl - URL to be encodedtrue if the URL was encoded@Deprecated
public void sendAcknowledgement()
throws java.io.IOException
sendAcknowledgement(ContinueResponseTiming).java.io.IOException - if an input/output error occurspublic void sendAcknowledgement(ContinueResponseTiming continueResponseTiming) throws java.io.IOException
continueResponseTiming - Indicates when the request for the ACK originated so it can be compared with the
configured timing for ACK responses.java.io.IOException - if an input/output error occurspublic void sendError(int status)
throws java.io.IOException
sendError in interface HttpServletResponsestatus - HTTP status code to sendjava.lang.IllegalStateException - if this response has already been committedjava.io.IOException - if an input/output error occurspublic void sendError(int status,
java.lang.String message)
throws java.io.IOException
sendError in interface HttpServletResponsestatus - HTTP status code to sendmessage - Corresponding message to sendjava.lang.IllegalStateException - if this response has already been committedjava.io.IOException - if an input/output error occurspublic void sendRedirect(java.lang.String location)
throws java.io.IOException
javax.servlet.http.HttpServletResponseHttpServletResponse.SC_FOUND 302 (Found), clears the response buffer and commits the response. The response buffer will be
replaced with a short hypertext note as per RFC 9110.
This method has no effect if called from an include.
This method accepts both relative and absolute URLs. Absolute URLs passed to this method are used as provided as the redirect location URL. Relative URLs are converted to absolute URLs. If converting a relative URL to an absolute URL then:
If the response has already been committed, this method throws an IllegalStateException. After using this method, the response should be considered to be committed and should not be written to.
sendRedirect in interface HttpServletResponselocation - the redirect location URL (may be absolute or relative)java.io.IOException - If an input or output exception occurspublic void sendRedirect(java.lang.String location,
int status)
throws java.io.IOException
HttpServletResponse.SC_FOUND
(302). No attempt is made to validate the status code.location - Location URL to redirect tostatus - HTTP status code that will be sentjava.io.IOException - an IO exception occurredpublic void setDateHeader(java.lang.String name,
long value)
setDateHeader in interface HttpServletResponsename - Name of the header to setvalue - Date value to be setHttpServletResponse.containsHeader(java.lang.String),
HttpServletResponse.addDateHeader(java.lang.String, long)public void setHeader(java.lang.String name,
java.lang.String value)
setHeader in interface HttpServletResponsename - Name of the header to setvalue - Value to be setHttpServletResponse.containsHeader(java.lang.String),
HttpServletResponse.addHeader(java.lang.String, java.lang.String)public void setIntHeader(java.lang.String name,
int value)
setIntHeader in interface HttpServletResponsename - Name of the header to setvalue - Integer value to be setHttpServletResponse.containsHeader(java.lang.String),
HttpServletResponse.addIntHeader(java.lang.String, int)public void setStatus(int status)
setStatus in interface HttpServletResponsestatus - The new HTTP statusHttpServletResponse.sendError(int, java.lang.String)@Deprecated
public void setStatus(int status,
java.lang.String message)
setStatus in interface HttpServletResponsestatus - The new HTTP statusmessage - The associated text messageprotected boolean isEncodeable(java.lang.String location)
true if the specified URL should be encoded with a session identifier. This will be true if
all of the following conditions are met:
location - Absolute URL to be validatedtrue if the URL should be encodedprotected java.lang.String toAbsolute(java.lang.String location)
location - URL to be (possibly) converted and then returnedjava.lang.IllegalArgumentException - if a MalformedURLException is thrown when converting the relative URL to an
absolute oneprotected java.lang.String toEncoded(java.lang.String url,
java.lang.String sessionId)
url - URL to be encoded with the session idsessionId - Session id to be included in the encoded URLCopyright © 2000-2024 Apache Software Foundation.
Apache Tomcat, Tomcat, Apache, the Apache Tomcat logo and the Apache logo are either registered trademarks or trademarks of the Apache Software Foundation.