?? servletresponse.java
字號:
/** Copyright 2004 The Apache Software Foundation** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obtain a copy of the License at** http://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing, software* distributed under the License is distributed on an "AS IS" BASIS,* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.* See the License for the specific language governing permissions and* limitations under the License.*/package javax.servlet;import java.io.IOException;import java.io.PrintWriter;import java.util.Locale;/** * Defines an object to assist a servlet in sending a response to the client. * The servlet container creates a <code>ServletResponse</code> object and * passes it as an argument to the servlet's <code>service</code> method. * * <p>To send binary data in a MIME body response, use * the {@link ServletOutputStream} returned by {@link #getOutputStream}. * To send character data, use the <code>PrintWriter</code> object * returned by {@link #getWriter}. To mix binary and text data, * for example, to create a multipart response, use a * <code>ServletOutputStream</code> and manage the character sections * manually. * * <p>The charset for the MIME body response can be specified * explicitly using the {@link #setCharacterEncoding} and * {@link #setContentType} methods, or implicitly * using the {@link #setLocale} method. * Explicit specifications take precedence over * implicit specifications. If no charset is specified, ISO-8859-1 will be * used. The <code>setCharacterEncoding</code>, * <code>setContentType</code>, or <code>setLocale</code> method must * be called before <code>getWriter</code> and before committing * the response for the character encoding to be used. * * <p>See the Internet RFCs such as * <a href="http://www.ietf.org/rfc/rfc2045.txt"> * RFC 2045</a> for more information on MIME. Protocols such as SMTP * and HTTP define profiles of MIME, and those standards * are still evolving. * * @author Various * @version $Version$ * * @see ServletOutputStream * */ public interface ServletResponse { /** * Returns the name of the character encoding (MIME charset) * used for the body sent in this response. * The character encoding may have been specified explicitly * using the {@link #setCharacterEncoding} or * {@link #setContentType} methods, or implicitly using the * {@link #setLocale} method. Explicit specifications take * precedence over implicit specifications. Calls made * to these methods after <code>getWriter</code> has been * called or after the response has been committed have no * effect on the character encoding. If no character encoding * has been specified, <code>ISO-8859-1</code> is returned. * <p>See RFC 2047 (http://www.ietf.org/rfc/rfc2047.txt) * for more information about character encoding and MIME. * * @return a <code>String</code> specifying the * name of the character encoding, for * example, <code>UTF-8</code> * */ public String getCharacterEncoding(); /** * Returns the content type used for the MIME body * sent in this response. The content type proper must * have been specified using {@link #setContentType} * 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 {@link #getCharacterEncoding}, * the charset parameter is included in the string returned. * If no character encoding has been specified, the * charset parameter is omitted. * * @return a <code>String</code> specifying the * content type, for example, * <code>text/html; charset=UTF-8</code>, * or null * * @since 2.4 */ public String getContentType(); /** * Returns a {@link ServletOutputStream} suitable for writing binary * data in the response. The servlet container does not encode the * binary data. * <p> Calling flush() on the ServletOutputStream commits the response. * Either this method or {@link #getWriter} may * be called to write the body, not both. * * @return a {@link ServletOutputStream} for writing binary data * * @exception IllegalStateException if the <code>getWriter</code> method * has been called on this response * * @exception IOException if an input or output exception occurred * * @see #getWriter * */ public ServletOutputStream getOutputStream() throws IOException; /** * Returns a <code>PrintWriter</code> object that * can send character text to the client. * The <code>PrintWriter</code> uses the character * encoding returned by {@link #getCharacterEncoding}. * If the response's character encoding has not been * specified as described in <code>getCharacterEncoding</code> * (i.e., the method just returns the default value * <code>ISO-8859-1</code>), <code>getWriter</code> * updates it to <code>ISO-8859-1</code>. * <p>Calling flush() on the <code>PrintWriter</code> * commits the response. * <p>Either this method or {@link #getOutputStream} may be called * to write the body, not both. * * * @return a <code>PrintWriter</code> object that * can return character data to the client * * @exception UnsupportedEncodingException * if the character encoding returned * by <code>getCharacterEncoding</code> cannot be used * * @exception IllegalStateException * if the <code>getOutputStream</code> * method has already been called for this * response object * * @exception IOException * if an input or output exception occurred * * @see #getOutputStream * @see #setCharacterEncoding * */ public PrintWriter getWriter() throws IOException; /** * Sets the character encoding (MIME charset) of the response * being sent to the client, for example, to UTF-8. * If the character encoding has already been set by * {@link #setContentType} or {@link #setLocale}, * this method overrides it. * Calling {@link #setContentType} with the <code>String</code> * of <code>text/html</code> and calling * this method with the <code>String</code> of <code>UTF-8</code> * is equivalent with calling * <code>setContentType</code> with the <code>String</code> of * <code>text/html; charset=UTF-8</code>. * <p>This method can be called repeatedly to change the character * encoding. * This method has no effect if it is called after * <code>getWriter</code> has been * called or after the response has been committed. * <p>Containers must communicate the character encoding used for * the servlet response's writer to the client if the protocol * provides a way for doing so. In the case of HTTP, the character * encoding is communicated as part of the <code>Content-Type</code> * header for text media types. Note that the character encoding * cannot be communicated via HTTP headers if the servlet does not * specify a content type; however, it is still used to encode text * written via the servlet response's writer. * * @param charset a String specifying only the character set * defined by IANA Character Sets * (http://www.iana.org/assignments/character-sets) * * @see #setContentType * #setLocale * * @since 2.4 * */ public void setCharacterEncoding(String charset); /** * Sets the length of the content body in the response * In HTTP servlets, this method sets the HTTP Content-Length header. * * * @param len an integer specifying the length of the
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -