亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? httpservletresponse.java

?? 這是<java高級實用教程>的電子版書,內容深入淺出啊,有實例有解析,不錯的
?? JAVA
字號:
// HttpServletResponse - this interface represents an HTTP response
//
// API based on documentation from JavaSoft.
//
// Copyright (C) 1996,1998 by Jef Poskanzer <jef@acme.com>. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
//    notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
//
// Visit the ACME Labs Java page for up-to-date versions of this and other
// fine Java utilities: http://www.acme.com/java/

package Acme.Serve.servlet.http;

import java.io.*;
import Acme.Serve.servlet.*;

/// This interface represents an HTTP response.
// <P>
// This is taken from JavaSoft's Servlet API documentation.
// <P>
// <A HREF="/resources/classes/Acme/Serve/servlet/http/HttpServletResponse.java">Fetch the software.</A><BR>
// <A HREF="/resources/classes/Acme.tar.gz">Fetch the entire Acme package.</A>
// <P>
// @see Acme.Serve.servlet.Servlet

public interface HttpServletResponse extends ServletResponse
    {

    /// Adds the specified cookie to the response.  It can be called
    // multiple times to set more than one cookie.
    public void addCookie( Cookie cookie );

    /// Checks whether the response message header has a field with the
    // specified name.
    public boolean containsHeader( String name );

    /// Sets the status code and message for this response.
    // @param code the status code
    // @param msg the status message
    public void setStatus( int code, String msg );

    /// Sets the status code and a default message for this response.
    // @param code the status code
    public void setStatus( int code );

    /// Sets the value of a header field.
    // @param name the header field name
    // @param value the header field value
    public void setHeader( String name, String value );

    /// Sets the value of an integer header field.
    // @param name the header field name
    // @param value the header field integer value
    public void setIntHeader( String name, int value );

    /// Sets the value of a long header field.
    // @param name the header field name
    // @param value the header field long value
    public void setLongHeader( String name, long value );

    /// Sets the value of a date header field.
    // @param name the header field name
    // @param value the header field date value
    public void setDateHeader( String name, long date );

    /// Writes an error response using the specified status code and message.
    // @param code the status code
    // @param msg the status message
    // @exception IOException if an I/O error has occurred
    public void sendError( int code, String msg ) throws IOException;

    /// Writes an error response using the specified status code and a default
    // message.
    // @param code the status code
    // @exception IOException if an I/O error has occurred
    public void sendError( int code ) throws IOException;

    /// Sends a redirect message to the client using the specified redirect
    // location URL.
    // @param location the redirect location URL
    // @exception IOException if an I/O error has occurred
    public void sendRedirect( String location ) throws IOException;

    // URL session-encoding stuff.  Not implemented, but the API is here
    // for compatibility.

    /// Encodes the specified URL by including the session ID in it, or, if
    // encoding is not needed, returns the URL unchanged. The
    // implementation of this method should include the logic to determine
    // whether the session ID needs to be encoded in the URL. For example,
    // if the browser supports cookies, or session tracking is turned off,
    // URL encoding is unnecessary.
    // <P>
    // All URLs emitted by a Servlet should be run through this method.
    // Otherwise, URL rewriting cannot be used with browsers which do not
    // support cookies.
    public String encodeUrl( String url );

    /// Encodes the specified URL for use in the sendRedirect method or, if
    // encoding is not needed, returns the URL unchanged. The
    // implementation of this method should include the logic to determine
    // whether the session ID needs to be encoded in the URL.  Because the
    // rules for making this determination differ from those used to
    // decide whether to encode a normal link, this method is seperate
    // from the encodeUrl method.
    // <P>
    // All URLs sent to the HttpServletResponse.sendRedirect method should be
    // run through this method.  Otherwise, URL rewriting cannot be used with
    // browsers which do not support cookies.
    public String encodeRedirectUrl( String url );


    // Status codes.
    public static final int SC_CONTINUE = 100;
    public static final int SC_SWITCHING_PROTOCOLS = 101;
    public static final int SC_OK = 200;
    public static final int SC_CREATED = 201;
    public static final int SC_ACCEPTED = 202;
    public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203;
    public static final int SC_NO_CONTENT = 204;
    public static final int SC_RESET_CONTENT = 205;
    public static final int SC_PARTIAL_CONTENT = 206;
    public static final int SC_MULTIPLE_CHOICES = 300;
    public static final int SC_MOVED_PERMANENTLY = 301;
    public static final int SC_MOVED_TEMPORARILY = 302;
    public static final int SC_SEE_OTHER = 303;
    public static final int SC_NOT_MODIFIED = 304;
    public static final int SC_USE_PROXY = 305;
    public static final int SC_BAD_REQUEST = 400;
    public static final int SC_UNAUTHORIZED = 401;
    public static final int SC_PAYMENT_REQUIRED = 402;
    public static final int SC_FORBIDDEN = 403;
    public static final int SC_NOT_FOUND = 404;
    public static final int SC_METHOD_NOT_ALLOWED = 405;
    public static final int SC_NOT_ACCEPTABLE = 406;
    public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407;
    public static final int SC_REQUEST_TIMEOUT = 408;
    public static final int SC_CONFLICT = 409;
    public static final int SC_GONE = 410;
    public static final int SC_LENGTH_REQUIRED = 411;
    public static final int SC_PRECONDITION_FAILED = 412;
    public static final int SC_REQUEST_ENTITY_TOO_LARGE = 413;
    public static final int SC_REQUEST_URI_TOO_LONG = 414;
    public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415;
    public static final int SC_INTERNAL_SERVER_ERROR = 500;
    public static final int SC_NOT_IMPLEMENTED = 501;
    public static final int SC_BAD_GATEWAY = 502;
    public static final int SC_SERVICE_UNAVAILABLE = 503;
    public static final int SC_GATEWAY_TIMEOUT = 504;
    public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505;

    }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲1区2区3区| 精品一区二区三区久久久| 丰满少妇久久久久久久| 久久天天做天天爱综合色| 国产一区高清在线| 国产片一区二区三区| av电影天堂一区二区在线| 国产精品白丝在线| 欧美中文字幕一二三区视频| 日韩精品久久久久久| 精品欧美一区二区在线观看| 国产精品夜夜嗨| 一区二区中文字幕在线| 在线中文字幕不卡| 免费高清在线一区| 国产婷婷色一区二区三区四区| av在线综合网| 性欧美疯狂xxxxbbbb| 日韩欧美www| 99久久精品免费| 午夜不卡在线视频| 2023国产精品自拍| 色妞www精品视频| 蜜臀av性久久久久av蜜臀妖精| 国产午夜亚洲精品不卡| 日本韩国欧美三级| 免费成人你懂的| 亚洲视频免费在线| 日韩视频一区在线观看| 国产jizzjizz一区二区| 亚洲v精品v日韩v欧美v专区| 久久久精品一品道一区| 欧美色网一区二区| 高清beeg欧美| 青青草原综合久久大伊人精品| 中文字幕乱码久久午夜不卡 | 麻豆精品久久久| 久久精品欧美日韩精品| 欧美色倩网站大全免费| 国产精品18久久久久久久久| 亚洲国产一区二区三区| 欧美激情综合网| 制服丝袜日韩国产| 99免费精品在线| 国产美女娇喘av呻吟久久| 亚洲综合一区在线| 久久免费视频一区| 欧美久久高跟鞋激| 色呦呦一区二区三区| 国产传媒日韩欧美成人| 免费成人av资源网| 亚洲国产乱码最新视频 | 欧美性猛交xxxxxx富婆| 国产精品一区不卡| 免费人成网站在线观看欧美高清| 亚洲欧美成aⅴ人在线观看| 久久婷婷成人综合色| 6080亚洲精品一区二区| 91黄色免费看| 成人午夜电影网站| 捆绑紧缚一区二区三区视频| 日韩中文字幕av电影| 最新日韩av在线| 日本一区二区在线不卡| 精品动漫一区二区三区在线观看| 欧美日韩国产成人在线91| 色悠悠亚洲一区二区| 91麻豆swag| 99久久免费国产| av一二三不卡影片| 成人涩涩免费视频| 国产成人精品网址| 国模少妇一区二区三区| 国产精品资源网站| 国产伦精品一区二区三区在线观看 | 久久国产精品99精品国产| 三级影片在线观看欧美日韩一区二区 | 欧美日韩国产精品自在自线| 欧美在线不卡视频| 色婷婷亚洲精品| 欧美性感一区二区三区| 欧美熟乱第一页| 欧美特级限制片免费在线观看| 欧美在线看片a免费观看| 欧美在线你懂得| 欧美一区国产二区| 欧美电视剧在线观看完整版| 26uuu国产电影一区二区| 久久女同精品一区二区| 中文字幕精品一区二区精品绿巨人 | 国产高清一区日本| 国产激情视频一区二区三区欧美 | 3atv在线一区二区三区| 欧美一级久久久| 久久视频一区二区| 国产日韩影视精品| 国产精品电影院| 亚洲综合色婷婷| 免费精品视频最新在线| 国产精品影音先锋| 91浏览器在线视频| 777午夜精品免费视频| 欧美mv日韩mv国产网站| 欧美韩国日本一区| 日韩毛片精品高清免费| 亚洲成在线观看| 久久国内精品视频| av网站一区二区三区| 欧美性视频一区二区三区| 在线综合+亚洲+欧美中文字幕| 亚洲精品中文在线| 亚洲一区二区三区免费视频| 日本网站在线观看一区二区三区| 国产精品1024| 欧美丝袜丝交足nylons| 久久久久久久综合色一本| 中文字幕在线观看一区| 日韩高清在线电影| 国产高清不卡二三区| 在线视频观看一区| 精品国产区一区| 亚洲少妇最新在线视频| 日本va欧美va欧美va精品| 99久久国产免费看| 日韩一区二区视频| 亚洲日本乱码在线观看| 看电影不卡的网站| 色婷婷综合久久久久中文| 欧美大黄免费观看| 亚洲欧美韩国综合色| 韩国欧美国产一区| 欧美亚洲国产一卡| 国产丝袜美腿一区二区三区| 日韩福利电影在线观看| 99久久免费国产| 久久丝袜美腿综合| 日韩成人一级片| 色噜噜狠狠成人中文综合| 日韩欧美国产综合在线一区二区三区| 亚洲人成人一区二区在线观看| 久久不见久久见免费视频7| 91久久精品日日躁夜夜躁欧美| 国产亚洲精品久| 经典三级视频一区| 欧美日韩国产另类不卡| 亚洲美女屁股眼交3| 不卡区在线中文字幕| 欧美变态tickle挠乳网站| 亚洲aaa精品| 91福利视频久久久久| 亚洲国产精品精华液2区45| 麻豆高清免费国产一区| 欧美日韩aaa| 亚洲福利视频一区| 99精品国产一区二区三区不卡| 久久久99精品免费观看| 久久成人免费电影| 777午夜精品视频在线播放| 亚洲午夜久久久久| 色婷婷一区二区三区四区| 国产精品乱人伦中文| 国产传媒欧美日韩成人| 国产午夜精品久久久久久免费视| 国产一区在线观看视频| 欧美成人一区二区三区| 裸体健美xxxx欧美裸体表演| 在线播放欧美女士性生活| 亚洲成a人v欧美综合天堂| 91九色02白丝porn| 亚洲成av人片在www色猫咪| 91久久国产最好的精华液| 亚洲女人的天堂| 91精彩视频在线| 亚洲二区视频在线| 91精品国产综合久久蜜臀| 日韩成人伦理电影在线观看| 日韩欧美一区在线观看| 奇米一区二区三区av| 精品99一区二区| 成人丝袜高跟foot| 亚洲欧美色图小说| 色老汉一区二区三区| 偷拍日韩校园综合在线| 欧美一区二区三级| 国产在线国偷精品免费看| 久久久国产午夜精品| 91在线无精精品入口| 亚洲国产成人porn| 日韩美女在线视频| 成人免费视频免费观看| √…a在线天堂一区| 欧美日韩一二三| 久久精品国产99国产| 日本一区免费视频| 欧洲精品在线观看| 久久精品国产久精国产| 国产精品美女一区二区三区| 欧美三级韩国三级日本三斤| 激情综合色丁香一区二区| 亚洲欧洲性图库|