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

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

?? httpservletrequest.java

?? 圖書管理系統,用JSP實現,圖書的查詢,添加等功能
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
     * 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 portion of the request URI that indicates the context
     * of the request.  The context path always comes first in a request
     * URI.  The path starts with a "/" character but does not end with a "/"
     * character.  For servlets in the default (root) context, this method
     * returns "".
     *
     *
     * @return		a <code>String</code> specifying the
     *			portion of the request URI that indicates the context
     *			of the request
     *
     *
     */

    public String getContextPath();
    
    
    

    /**
     *
     * 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 login of the user making this request, if the
     * user has been authenticated, or <code>null</code> if the user 
     * has not been authenticated.
     * Whether the user name is sent with each subsequent request
     * depends on the browser and type of authentication. Same as the 
     * value of the CGI variable REMOTE_USER.
     *
     * @return		a <code>String</code> specifying the login
     *			of the user making this request, or <code>null</code
     *			if the user login is not known
     *
     */

    public String getRemoteUser();
    
    
    

    /**
     *
     * Returns a boolean indicating whether the authenticated user is included
     * in the specified logical "role".  Roles and role membership can be
     * defined using deployment descriptors.  If the user has not been
     * authenticated, the method returns <code>false</code>.
     *
     * @param role		a <code>String</code> specifying the name
     *				of the role
     *
     * @return		a <code>boolean</code> indicating whether
     *			the user making this request belongs to a given role;
     *			<code>false</code> if the user has not been 
     *			authenticated
     *
     */

    public boolean isUserInRole(String role);
    
    
    

    /**
     *
     * Returns a <code>java.security.Principal</code> object containing
     * the name of the current authenticated user. If the user has not been
     * authenticated, the method returns <code>null</code>.
     *
     * @return		a <code>java.security.Principal</code> containing
     *			the name of the user making this request;
     *			<code>null</code> if the user has not been 
     *			authenticated
     *
     */

    public java.security.Principal getUserPrincipal();
    
    
    

    /**
     *
     * 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}.
     *
     * @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 specified in the request URL 
     *
     *
     */

    public String getServletPath();
    
    
    

    /**
     *
     * Returns the current <code>HttpSession</code>
     * associated with this request or, if if there is no
     * current session and <code>create</code> is true, returns 
     * a new session.
     *
     * <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 before 
     * the response is committed.
     *
     *
     *
     *
     * @param		<code>true</code> to create
     *			a new session for this request if necessary; 
     *			<code>false</code> to return <code>null</code>
     *			if there's no 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
     *
     * @see	#getSession()
     *
     *
     */

    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
     *
     * @see	#getSession(boolean)
     *
     */

    public HttpSession getSession();
    
    
    
    
    

    /**
     *
     * Checks whether the requested session ID is still valid.
     *
     * @return			<code>true</code> if this
     *				request has an id for a valid session
     *				in the current session context;
     *				<code>false</code> otherwise
     *
     * @see			#getRequestedSessionId
     * @see			#getSession
     * @see			HttpSessionContext
     *
     */

    public boolean isRequestedSessionIdValid();
    
    
    

    /**
     *
     * Checks whether the requested session ID came in as a cookie.
     *
     * @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 requested session ID came in as part of the 
     * request URL.
     *
     * @return			<code>true</code> if the session ID
     *				came in as part of a 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一区二区三区免费野_久草精品视频
成人ar影院免费观看视频| 激情综合色综合久久综合| 久久久777精品电影网影网 | 26uuuu精品一区二区| 91精品啪在线观看国产60岁| 欧美日韩视频在线第一区| 91精品办公室少妇高潮对白| 色婷婷国产精品| 欧美三级三级三级爽爽爽| 欧美理论电影在线| 欧美一区二区精品久久911| 欧美一区二区三区公司| 久久综合色一综合色88| 国产欧美日韩三区| 最新欧美精品一区二区三区| 一区二区在线电影| 亚洲va天堂va国产va久| 日本va欧美va瓶| 国产精品原创巨作av| 不卡视频一二三| 欧美性视频一区二区三区| 欧美裸体一区二区三区| 精品欧美乱码久久久久久 | 97se亚洲国产综合自在线观| 在线免费视频一区二区| 欧美一二三四在线| 欧美国产精品久久| 亚洲国产综合视频在线观看| 久久99最新地址| 成人美女视频在线观看18| 色诱亚洲精品久久久久久| 精品久久久影院| 最新高清无码专区| 奇米四色…亚洲| 99国内精品久久| 日韩一级完整毛片| 国产精品每日更新| 久久国产生活片100| 972aa.com艺术欧美| 日韩欧美国产综合| 一区二区三区在线免费| 国产一区二区三区免费| 欧美亚洲动漫精品| 国产精品日日摸夜夜摸av| 亚洲第一狼人社区| 不卡av电影在线播放| 日韩一级高清毛片| 亚洲一区二区四区蜜桃| 国产ts人妖一区二区| 91精品国产手机| 一区二区高清免费观看影视大全| 久久99最新地址| 91.com在线观看| 一区二区三区国产豹纹内裤在线| 精品亚洲欧美一区| 欧美电影一区二区| 一区二区在线观看免费| 91丝袜美女网| 精品国产一二三区| 欧洲亚洲精品在线| 欧洲亚洲精品在线| 夜夜精品视频一区二区| 91在线精品秘密一区二区| 午夜精品一区在线观看| 欧美日韩和欧美的一区二区| 亚洲欧洲另类国产综合| 久久久不卡影院| 亚洲一区二区三区视频在线播放 | 国产乱国产乱300精品| 国产毛片精品国产一区二区三区| 成人激情综合网站| 一区二区三区四区av| 亚洲狼人国产精品| 日本aⅴ免费视频一区二区三区 | 久久66热re国产| 成人黄色a**站在线观看| 国产一区二区在线观看视频| 香蕉加勒比综合久久| 丝袜美腿亚洲一区| 看片的网站亚洲| 国产在线一区二区| 成人国产在线观看| 欧美日韩国产美女| 久久人人爽爽爽人久久久| 欧美激情一区二区三区在线| 亚洲欧美一区二区三区极速播放| 亚洲精品成人天堂一二三| 免费成人结看片| 93久久精品日日躁夜夜躁欧美| 欧美日本在线播放| 国产成人自拍网| 91成人免费网站| 欧美一级二级三级蜜桃| 国产欧美视频在线观看| 亚洲已满18点击进入久久| 亚洲人123区| 久久99九九99精品| 91精品国产欧美一区二区18| 久久久99精品久久| 欧美日韩视频在线第一区| 亚洲图片欧美一区| 久久久久久亚洲综合| 成人黄色免费短视频| 亚洲国产另类av| 亚洲精品一区二区三区99| 成人激情图片网| 国产精品白丝在线| 欧美精品v国产精品v日韩精品| 国产中文字幕一区| 洋洋av久久久久久久一区| 26uuu亚洲| 欧美久久免费观看| 懂色一区二区三区免费观看| 亚洲综合色在线| 久久精品夜色噜噜亚洲a∨| 日本韩国一区二区三区| 国产一区日韩二区欧美三区| 一区二区三区欧美| 久久久亚洲午夜电影| 欧美老人xxxx18| 91麻豆精东视频| 国产99久久久精品| 青青草原综合久久大伊人精品优势| 中文字幕免费观看一区| 欧美高清视频不卡网| 91啪亚洲精品| 国产大陆亚洲精品国产| 免费观看在线色综合| 国产精品久久夜| 欧美精品一区二区三区很污很色的| 91麻豆精东视频| 99久久精品费精品国产一区二区| 蜜臀久久99精品久久久画质超高清 | 青青国产91久久久久久 | 偷拍自拍另类欧美| ...xxx性欧美| 欧美国产成人精品| 久久久久亚洲综合| 欧美mv日韩mv国产| 日韩欧美久久一区| 欧美一区二区三区四区高清| 在线观看成人小视频| 91丨porny丨在线| 不卡电影一区二区三区| 国产专区欧美精品| 国产精品综合在线视频| 日韩av一级片| 免费久久精品视频| 激情六月婷婷久久| 精品无人区卡一卡二卡三乱码免费卡| 蜜桃视频在线观看一区| 日本在线不卡一区| 美国av一区二区| 久久草av在线| 国产一区二区电影| 国产精品66部| av一区二区三区黑人| 成人激情免费视频| 91首页免费视频| 一本到一区二区三区| 在线看日本不卡| 欧美日韩国产一区| 日韩一区二区免费在线观看| 欧洲中文字幕精品| 精品99999| 欧美午夜片在线观看| 日韩美女视频在线| www国产精品av| 国产精品女上位| 久久网站热最新地址| 国产精品久久久久天堂| 久久亚洲欧美国产精品乐播| 精品美女一区二区三区| 成人av网站在线观看免费| 国产成人精品综合在线观看| 91精品久久久久久久91蜜桃| 国产精品1024久久| 99国产精品久久久久| 欧美日韩电影在线| 欧美精品精品一区| 国产成人av电影在线| 日韩欧美中文字幕公布| 自拍偷拍国产精品| 一区二区三区四区视频精品免费| 一区二区三国产精华液| 青青草伊人久久| 国产不卡视频一区| 欧美日韩亚洲综合一区| 久久久久久久久久电影| 亚洲自拍都市欧美小说| 国产在线视视频有精品| 欧洲中文字幕精品| 久久九九久精品国产免费直播| 亚洲男人天堂av网| 国产在线视频不卡二| 欧美午夜精品免费| 国产精品乱码一区二三区小蝌蚪| 亚洲国产精品久久人人爱| 成熟亚洲日本毛茸茸凸凹| 欧美美女网站色|