亚洲欧美第一页_禁久久精品乱码_粉嫩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.Servletpublic 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一区二区三区免费野_久草精品视频
成人欧美一区二区三区白人| 免费人成黄页网站在线一区二区| 亚洲六月丁香色婷婷综合久久| 五月天丁香久久| 国产精品一区二区三区网站| 欧美日韩精品专区| 国产精品人成在线观看免费| 美女视频一区在线观看| 日本丶国产丶欧美色综合| 久久久午夜精品理论片中文字幕| 亚洲国产欧美在线| 国产a精品视频| 日韩一区二区三区在线| 亚洲午夜免费视频| 91蝌蚪国产九色| 国产欧美日本一区视频| 国精产品一区一区三区mba桃花| 欧美亚洲愉拍一区二区| 一区二区三区在线视频免费| 播五月开心婷婷综合| 久久久午夜精品| 国产麻豆成人传媒免费观看| 日韩免费电影网站| 男人的j进女人的j一区| 欧美一区二区成人6969| 麻豆精品精品国产自在97香蕉| 欧美视频一区二区三区在线观看| 亚洲丝袜另类动漫二区| 成人午夜激情视频| 国产精品免费免费| 成人av网址在线| 国产精品国产精品国产专区不蜜| 国产成人精品三级麻豆| 国产三级久久久| 国产凹凸在线观看一区二区| 中文字幕乱码亚洲精品一区| 成人性生交大片免费看在线播放| 久久免费的精品国产v∧| 国模一区二区三区白浆| 久久九九久久九九| 99精品在线免费| 亚洲伦理在线精品| 欧美日韩亚洲国产综合| 婷婷一区二区三区| 欧美成人一区二区三区片免费| 免费久久精品视频| 久久看人人爽人人| 色婷婷av久久久久久久| 日韩和欧美一区二区| 欧美成人一区二区三区在线观看| 国产在线精品不卡| 国产精品美女久久久久高潮| 色综合天天在线| 日韩不卡在线观看日韩不卡视频| 久久综合九色综合97_久久久| 国产一区二三区好的| 亚洲国产精品激情在线观看| 在线欧美日韩精品| 九九**精品视频免费播放| 国产欧美日韩精品在线| 在线免费观看成人短视频| 美女视频一区二区三区| 国产精品午夜在线观看| 欧美三级乱人伦电影| 加勒比av一区二区| 亚洲私人影院在线观看| 欧美成人性战久久| 99视频超级精品| 色综合久久综合网| 久久电影网站中文字幕| 亚洲视频一区二区在线| 日韩美女在线视频| 色综合激情久久| 国内精品视频一区二区三区八戒| 最新不卡av在线| 欧美mv和日韩mv国产网站| av男人天堂一区| 久久99精品久久久久婷婷| 亚洲精品中文字幕在线观看| xnxx国产精品| 欧美在线三级电影| 丰满亚洲少妇av| 久久电影网站中文字幕| 亚洲成av人片| 综合自拍亚洲综合图不卡区| 久久久久久97三级| 日韩欧美一区二区视频| 色婷婷一区二区三区四区| 精品亚洲成a人在线观看| 亚洲综合偷拍欧美一区色| 中文字幕免费在线观看视频一区| 欧美精品久久久久久久多人混战| jlzzjlzz亚洲日本少妇| 国产精品系列在线播放| 免费一级欧美片在线观看| 夜夜嗨av一区二区三区| 亚洲欧洲av在线| 中文字幕乱码日本亚洲一区二区 | 国内精品久久久久影院薰衣草| 亚洲最大成人综合| 亚洲欧洲精品天堂一级| 久久综合九色综合97婷婷女人 | 91偷拍与自偷拍精品| 丰满岳乱妇一区二区三区| 国产呦萝稀缺另类资源| 久久精品国内一区二区三区 | 自拍偷拍欧美精品| 中文字幕一区三区| 国产天堂亚洲国产碰碰| 国产亚洲精品福利| 中文字幕第一区二区| 欧美精品一区二区三区高清aⅴ| 欧美一区二区三区精品| 日韩一区二区三| 日韩欧美中文字幕一区| 日韩欧美成人激情| 欧美v国产在线一区二区三区| 欧美高清激情brazzers| 91.com视频| 精品盗摄一区二区三区| 久久这里只有精品首页| 久久久www成人免费毛片麻豆 | 国产精品一区二区男女羞羞无遮挡| 蜜桃传媒麻豆第一区在线观看| 蜜桃久久久久久| 国产精品自拍av| 欧美日韩国产大片| 在线成人av影院| 欧美大片一区二区| 欧美激情在线一区二区| 国产精品全国免费观看高清 | 久久蜜臀精品av| 国产精品嫩草影院com| 亚洲视频精选在线| 亚洲图片一区二区| 美女任你摸久久| 成人激情免费网站| 欧美视频精品在线观看| 91精品国产综合久久精品图片| 欧美精品一区二区三区一线天视频| 日本一区二区免费在线| ●精品国产综合乱码久久久久| 亚洲一区二区三区中文字幕| 日韩不卡一区二区三区 | 97精品电影院| 欧美剧情电影在线观看完整版免费励志电影 | 国产麻豆91精品| 色av综合在线| 亚洲精品一区二区精华| 国产精品国产三级国产三级人妇 | 欧美激情中文字幕| 五月综合激情日本mⅴ| 国产一区视频网站| 日本高清不卡一区| 国产欧美日韩在线看| 亚洲高清一区二区三区| 国产一区二区日韩精品| 91女神在线视频| 久久女同性恋中文字幕| 亚洲已满18点击进入久久| 国产精品资源网站| 欧美三电影在线| 国产午夜一区二区三区| 婷婷亚洲久悠悠色悠在线播放| 成人高清视频在线| 精品美女在线播放| 亚洲成在人线免费| 成人动漫中文字幕| 精品久久一区二区三区| 亚洲在线免费播放| 91亚洲精品乱码久久久久久蜜桃 | 国产激情一区二区三区四区| 欧美亚洲综合一区| 亚洲色图都市小说| 国产91清纯白嫩初高中在线观看| 91麻豆精品国产91久久久久久久久| 亚洲欧洲国产日韩| 成人性生交大片免费看视频在线| 日韩精品中文字幕在线一区| 亚洲午夜视频在线| 色88888久久久久久影院按摩| 欧美激情综合在线| 欧美精品在线视频| 一区二区欧美视频| 91网址在线看| 日韩一区欧美小说| 国产1区2区3区精品美女| 欧美一区二区三区在线看| 天堂一区二区在线免费观看| 欧美图区在线视频| 亚洲免费色视频| 色综合久久久久久久| 国产精品不卡视频| 成人18精品视频| 国产精品久久久久久久久免费丝袜 | 亚洲天堂av一区| aaa亚洲精品| 亚洲女人****多毛耸耸8| 91香蕉视频mp4| 一区二区三区电影在线播|