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

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

?? httpservletrequest.java

?? Java 的servlets和jsp的軟件開發包。支持jsp1.0以及servlet2.1。版本比較舊
?? JAVA
字號:
/*
 * $Id: HttpServletRequest.java,v 1.4 1999/04/20 20:37:47 sahmed Exp $
 * 
 * Copyright (c) 1995-1999 Sun Microsystems, Inc. All Rights Reserved.
 * 
 * This software is the confidential and proprietary information of Sun
 * Microsystems, Inc. ("Confidential Information").  You shall not
 * disclose such Confidential Information and shall use it only in
 * accordance with the terms of the license agreement you entered into
 * with Sun.
 * 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
 * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
 * THIS SOFTWARE OR ITS DERIVATIVES.
 * 
 * CopyrightVersion 1.0
 */

package javax.servlet.http;

import javax.servlet.ServletRequest;
import java.util.Enumeration;

/**
 *
 * Extends the {@link javax.servlet.ServletRequest} interface
 * to provide additional functionality for the request object
 * that is passed to an HTTP servlet. 
 *
 * <p>The servlet engine implements
 * this interface to create <code>HttpServletRequest</code> objects,
 * which pass information from the client to the <code>service<code>

 * method of an <code>HttpServlet</code>.
 *
 *
 * @author 	Various
 * @version	$Version$
 *
 *
 */

public interface HttpServletRequest extends ServletRequest {



    /**
     * Returns the name of the authentication scheme the
     * server uses, for example, "BASIC" or "SSL," or <code>null</code>
     * if the server does not have an authentication scheme. 
     *
     * <p>The authentication scheme provides a challenge-response
     * model in which the server challenges the client,
     * and the client provides authentication information.
     * Same as the value of the CGI variable AUTH_TYPE.
     *
     *
     * @return		a <code>String</code> specifying the name of
     *			the authentication scheme, or
     *			<code>null</code> if the server
     *			does not have an authentication
     *			scheme
     *
     */
   
    public String getAuthType();
    
   
    

    /**
     *
     * Returns an array containing all of the <code>Cookie</code>
     * objects the browser sent with this request.
     * This method returns <code>null</code> if the browser did 
     * not send any cookies.
     *
     * @return		an array of all the <code>Cookies</code>
     *			included with this request, or <code>null</code>
     *			if the request has no cookies
     *
     *
     */

    public Cookie[] getCookies();
    
    
    

    /**
     *
     * Returns the value of the specified request header
     * as a <code>long</code> value that represents a 
     * <code>Date</code> object. Use this method with
     * headers that contain dates, such as
     * <code>If-Modified-Since</code>. 
     *
     * <p>The date is returned as
     * the number of milliseconds since January 1, 1970 GMT.
     * The header name is case insensitive.
     *
     * <p>If the request did not have a header of the
     * specified name, this method returns -1. If the header
     * can't be converted to a date, the method returns
     * an <code>IllegalArgumentException</code>.
     *
     * @param name		a <code>String</code> specifying the
     *				name of the header
     *
     * @return			a <code>long</code> value
     *				representing the date specified
     *				in the header expressed as
     *				the number of milliseconds
     *				since January 1, 1970 GMT,
     *				or -1 if the named header
     *				was not included with the
     *				reqest
     *
     */

    public long getDateHeader(String name);
    
    
    

    /**
     *
     * Returns the value of the specified request header
     * as a <code>String</code>. If the named header wasn't 
     * sent with
     * the request, this method returns <code>null</code>.
     * The header name is case insensitive. You can use
     * this method with any request header.
     *
     * @param name		a <code>String</code> specifying the
     *				header name
     *
     * @return			a <code>String</code> containing the
     *				value of the requested
     *				header, or <code>null</code>
     *				if the request does not
     *				have a header of that name
     *
     */			

    public String getHeader(String name); 
    
    
    
    

    /**
     *
     * Returns an enumeration of all the header names
     * this request contains. If the request has no
     * headers, this method returns an empty enumeration.
     *
     * <p>Some servlet engines do not allow do not allow
     * servlets to access headers using this method, in
     * which case this method returns <code>null</code>
     *
     * @return			an enumeration of all the
     *				header names sent with this
     *				request; if the request has
     *				no headers, an empty enumeration;
     *				if the servlet engine does not
     *				allow servlets to use this method,

     *				<code>null</code>
     *
     */

    public Enumeration getHeaderNames();
    
    
    

    /**
     *
     * Returns the value of the specified request header
     * as an integer. If the request does not have a header
     * of the specified name, this method returns -1. If the
     * header cannot be converted to an integer, this method
     * throws a <code>NumberFormatException</code>.
     *
     * <p>The header name is case insensitive.
     *
     * @param name		a <code>String</code> specifying the name
     *				of a request header
     *
     * @return			an integer expressing the value 
     * 				of the request header or -1
     *				if the request doesn't have a
     *				header of this name
     *
     */

    public int getIntHeader(String name);
    
    
    

    /**
     *
     * Returns the name of the HTTP method with which this 
     * request was made, for example, GET, POST, or PUT.
     * The returned <code>String</code> is the same as
     * the value of the CGI variable REQUEST_METHOD.
     *
     * @return			a <code>String</code> 
     *				specifying the name
     *				of the method with which
     *				this request was made
     *
     */
 
    public String getMethod();
    
    
    

    /**
     *
     * Returns any extra path information associated with
     * the URL the client sent when it made this request.
     * The extra path information follows the servlet path
     * (the URI of the URL) but precedes the query string.
     * This method returns <code>null</code> if there
     * was no extra path information.
     *
     * <p>The information this method returns is
     * the same as the value of the CGI variable PATH_INFO.
     *
     *
     * @return		a <code>String</code> specifying 
     *			extra path information that comes
     *			after the servlet path but before
     *			the query string in the request URL;
     *			or <code>null</code> if the URL does not have
     *			any extra path information
     *
     */
     
    public String getPathInfo();
    

 

    /**
     *
     * Returns any extra path information after the servlet name
     * but before the query string, and translates it to a real
     * path. Same as the value of the CGI variable PATH_TRANSLATED.
     *
     * <p>If the URL does not have any extra path information,
     * this method returns <code>null</code>.
     *
     *
     * @return		a <code>String</code> specifying the
     *			real path, or <code>null</code> if
     *			the URL does not have any extra path
     *			information
     *
     *
     */

    public String getPathTranslated();
    
    
    

    /**
     *
     * Returns the query string that is contained in the request
     * URL after the path. This method returns <code>null</code>
     * if the URL does not have a query string. Same as the value
     * of the CGI variable QUERY_STRING.
     *
     * @return		a <code>String</code> containing the query
     *			string or <code>null</code> if the URL 
     *			contains no query string
     *
     */

    public String getQueryString();
    
    
    

    /**
     *
     * Returns the name of the user making this request, if the
     * user has logged in using HTTP authentication. This method
     * returns <code>null</code> if the user login is not authenticated.
     * Whether the user name is sent with each subsequent request
     * depends on the browser. Same as the value of the CGI variable
     * REMOTE_USER.
     *
     * @return		a <code>String</code> specifying the name
     *			of the user making this request, or <code>null</code
     *			if the user name is not known
     *
     */

    public String getRemoteUser();
    
    
    

    /**
     *
     * Returns the session ID specified by the client. This may
     * not be the same as the ID of the actual session in use.
     * For example, if the request specified an old (expired)
     * session ID and the server has started a new session, this
     * method gets a new session with a new ID. If the request
     * did not specify a session ID, this method returns
     * <code>null</code>.
     *
     *
     * @return		a <code>String</code> specifying the session
     *			ID, or <code>null</code> if the request did
     *			not specify a session ID
     *
     * @see		#isRequestedSessionIdValid
     *
     */

    public String getRequestedSessionId ();
    
    
    
    
    /**
     *
     * Returns the part of this request's URL from the protocol
     * name up to the query string in the first line of the HTTP request.
     * For example:
     *
     * <blockquote>
     * <table>
     * <tr align=left><th>First line of HTTP request<th>
     * <th>Returned Value
     * <tr><td>POST /some/path.html HTTP/1.1<td><td>/some/path.html
     * <tr><td>GET http://foo.bar/a.html HTTP/1.0
     * <td><td>http://foo.bar/a.html
     * <tr><td>HEAD /xyz?a=b HTTP/1.1<td><td>/xyz
     * </table>
     * </blockquote>
     *
     * <p>To reconstruct an URL with a scheme and host, use
     * {@link HttpUtils#getRequestURL}, which
     * returns a <code>StringBuffer</code>.
     *
     * @return		a <code>String</code> containing
     *			the part of the URL from the 
     *			protocol name up to the query string
     *
     * @see		HttpUtils#getRequestURL
     *
     */

    public String getRequestURI();
    
    
    

    /**
     *
     * Returns the part of this request's URL that calls
     * the servlet. This includes either the servlet name or
     * a path to the servlet, but does not include any extra
     * path information or a query string. Same as the value 
     * of the CGI variable SCRIPT_NAME.
     *
     *
     * @return		a <code>String</code> containing
     *			the name or path of the servlet being
     *			called, as it is specified in
     *			the request URL 
     *
     *
     */

    public String getServletPath();
    
    
    

    /**
     *
     * Returns the current <code>HttpSession</code>
     * associated with this request or, if necessary, creates
     * a new session for the request. Use <code>true</code>
     * for <code>create</code> to create a new session,
     * or <code>false</code> to return the current
     * <code>HttpSession</code>. 
     *
     * <p>If <code>create</code> is <code>false</code>
     * and the request has no valid <code>HttpSession</code>,
     * this method returns <code>null</code>.
     *
     * <p>To make sure the session is properly maintained,
     * you must call this method at least once before 
     * you write any output to the response. Newly created 
     * sessions (that is, sessions for which 
     * <code>HttpSession.isNew</code> returns <code>true</code>)
     * do not have any application-specific state.
     *
     *
     *
     *
     * @param		<code>true</code> to create

     *			a new session for this request; 
     *			<code>false</code> to return the current
     *			session
     *			
     *
     * @return 		the <code>HttpSession</code> associated 
     *			with this request or <code>null</code> if
     * 			<code>create</code> is <code>false</code>
     *			and the request has no valid session
     *
     *
     *
     */

    public HttpSession getSession (boolean create);
    
    
    
   

    /**
     *
     * Returns the current session associated with this request,
     * or if the request does not have a session, creates one.
     * 
     * @return		the <code>HttpSession</code> associated
     *			with this request
     *
     */

    public HttpSession getSession();
    
    
    
    
    

    /**
     *
     * Checks whether this request has a valid session in the
     * current session context (which is a
     * {@link HttpSessionContext}). 
     * If the session is not valid,
     * the {@link #getSession} method never returns it.
     *
     * @return			<code>true</code> if this
     *				request has a valid session
     *				in the current session context;
     *				otherwise, <code>false</code>
     *
     * @see			#getRequestedSessionId
     * @see			#getSession
     * @see			HttpSessionContext
     *
     */

    public boolean isRequestedSessionIdValid ();
    
    
    

    /**
     *
     * Checks whether the session ID this request submitted
     * came in as a cookie, rather than from the {@link #getSession}
     * method.
     *
     * @return			<code>true</code> if the session ID

     *				came in as a
     *				cookie; otherwise, <code>false</code>
     *
     *
     * @see			#getSession
     *
     */ 

    public boolean isRequestedSessionIdFromCookie ();
    
    
    

    /**
     *
     * Checks whether the session ID this request submitted
     * came in as part of the request URL, rather than
     * from the {@link #getSession} method.
     *
     * @return			<code>true</code> if the session ID
     *				came in as part of an URL; otherwise,
     *				<code>false</code>
     *
     *
     * @see			#getSession
     *
     */
    
    public boolean isRequestedSessionIdFromURL();
    
    
    
    
    
    /**
     *
     * @deprecated		As of Version 2.1 of the Java Servlet
     *				API, use {@link #isRequestedSessionIdFromURL}
     *				instead.
     *
     */

    public boolean isRequestedSessionIdFromUrl ();


    
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99热在这里有精品免费| 久久综合久色欧美综合狠狠| 精品欧美一区二区三区精品久久| 国产精品久久久久婷婷二区次| 日韩和欧美一区二区| 成人黄色在线看| 亚洲精品一区二区三区99| 亚洲一区二区精品3399| eeuss国产一区二区三区| 精品久久五月天| 无吗不卡中文字幕| 欧美在线观看视频一区二区| 国产精品麻豆网站| 国产乱子伦视频一区二区三区 | 国产综合久久久久久鬼色| 91高清视频在线| 日韩理论片中文av| 成人在线综合网| 久久久久亚洲蜜桃| 国产在线日韩欧美| 精品欧美一区二区在线观看| 免费视频一区二区| 日韩欧美激情四射| 麻豆久久一区二区| 日韩欧美久久久| 日本成人超碰在线观看| 欧美一区二区在线免费观看| 一个色妞综合视频在线观看| 91国产免费观看| 亚洲成人精品一区| 欧美日韩成人激情| 日韩在线a电影| 日韩视频一区二区三区在线播放| 香蕉av福利精品导航| 欧美日韩高清一区二区| 丝袜美腿亚洲综合| 欧美一级搡bbbb搡bbbb| 日本人妖一区二区| 久久影院视频免费| 成人精品国产一区二区4080| 国产精品青草综合久久久久99| 波多野结衣中文字幕一区二区三区| 中文字幕精品—区二区四季| 不卡免费追剧大全电视剧网站| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 97se亚洲国产综合在线| 亚洲一区二区三区免费视频| 欧美日韩国产另类一区| 激情国产一区二区| 国产精品素人视频| 欧美日韩你懂得| 麻豆国产欧美日韩综合精品二区| 26uuu另类欧美亚洲曰本| 成人久久久精品乱码一区二区三区| 亚洲婷婷综合久久一本伊一区| 欧美体内she精高潮| 日韩在线一区二区三区| 欧美激情中文不卡| 欧美三级午夜理伦三级中视频| 蜜臀国产一区二区三区在线播放| 国产亚洲精品免费| 91福利视频网站| 国产一区美女在线| 亚洲综合一二三区| 久久这里只有精品6| 91精品福利视频| 狠狠色丁香婷婷综合久久片| 亚洲男同性视频| 久久综合九色综合欧美就去吻| 99精品久久只有精品| 久久精品国产一区二区三区免费看| 久久久久久97三级| 7878成人国产在线观看| 成人av在线播放网站| 日韩成人一级片| 国产精品久久久久9999吃药| 日韩一区二区免费高清| 9久草视频在线视频精品| 日日噜噜夜夜狠狠视频欧美人| 国产香蕉久久精品综合网| 欧美日韩国产a| 91在线播放网址| 国产精品1区2区3区在线观看| 亚洲国产乱码最新视频 | 99久久精品免费看| 青青草成人在线观看| 亚洲免费观看高清| 日本一区二区在线不卡| 欧美一卡在线观看| 欧美色图12p| 色悠久久久久综合欧美99| 国产一区二区三区高清播放| 免费高清成人在线| 日韩 欧美一区二区三区| 亚洲综合成人在线视频| 亚洲婷婷在线视频| 中文字幕一区免费在线观看| 国产精品毛片a∨一区二区三区| 色一情一伦一子一伦一区| 99久久精品99国产精品| 日韩精品一区第一页| 亚洲精品欧美在线| 综合激情网...| 国产精品高潮呻吟久久| 久久久久久久久久电影| 精品人伦一区二区色婷婷| 欧美一级久久久| 欧美一区二区视频网站| 欧美精品日韩综合在线| 欧美日韩国产a| 9191成人精品久久| 欧美日韩综合一区| 欧美日韩中文精品| 欧美精品一二三区| 欧美一区二区黄| 日韩精品中文字幕在线一区| 日韩精品中文字幕在线不卡尤物 | 奇米色一区二区| 日本欧美在线观看| 美女免费视频一区二区| 麻豆专区一区二区三区四区五区| 蜜桃视频免费观看一区| 麻豆国产精品官网| 国产一本一道久久香蕉| 高清成人在线观看| 91蝌蚪porny| 欧美日韩国产一区二区三区地区| 91精品国产欧美日韩| 欧美一区二区啪啪| 久久精品一二三| 亚洲欧美在线视频观看| 亚洲一二三四久久| 美国精品在线观看| 懂色av一区二区三区免费观看| 北条麻妃国产九九精品视频| 色视频成人在线观看免| 欧美视频在线一区二区三区 | 欧洲一区在线电影| 在线播放91灌醉迷j高跟美女| 666欧美在线视频| 久久综合久久99| 亚洲精品成人在线| 免费观看一级欧美片| 成人一区二区三区在线观看| 99re8在线精品视频免费播放| 欧美三电影在线| 2021国产精品久久精品| 亚洲乱码国产乱码精品精的特点| 香蕉成人伊视频在线观看| 国产精品1024久久| 欧美在线播放高清精品| 精品国产乱码久久久久久1区2区| 国产精品免费aⅴ片在线观看| 亚洲一区av在线| 国产一区福利在线| 欧美日韩的一区二区| 国产欧美日韩综合精品一区二区| 亚洲一线二线三线视频| 国产乱人伦偷精品视频免下载 | 久久综合精品国产一区二区三区 | 欧美日韩午夜在线视频| 国产片一区二区| 男女男精品视频网| 色综合欧美在线| 久久久亚洲精华液精华液精华液| 亚洲一区二区av在线| 9人人澡人人爽人人精品| 精品捆绑美女sm三区| 亚洲综合在线视频| 成人在线一区二区三区| 欧美一区二区三区视频在线观看| 中文字幕一区二区三区不卡在线| 久久精品国产999大香线蕉| 色偷偷成人一区二区三区91| 久久综合一区二区| 蜜臀久久99精品久久久画质超高清| 91在线看国产| 中文字幕+乱码+中文字幕一区| 麻豆精品国产传媒mv男同| 欧美三级在线视频| 一区二区三区免费| av不卡在线观看| 国产日韩精品一区二区三区在线| 免费成人在线观看视频| 欧美日韩成人综合天天影院| 亚洲日本一区二区| 97国产一区二区| 国产精品久久久久久福利一牛影视 | 日韩中文字幕av电影| 色综合久久久久| 亚洲人成在线观看一区二区| 成人三级伦理片| 久久这里只精品最新地址| 久久精品国产一区二区| 日韩欧美一区在线观看| 免费在线观看视频一区| 91精品黄色片免费大全| 日本不卡视频一二三区| 7777精品伊人久久久大香线蕉| 亚洲电影你懂得|