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

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

?? servletcontext.java

?? jsp數據庫系統
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * The Apache Software License, Version 1.1
 *
 * Copyright (c) 1999 The Apache Software Foundation.  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.
 *
 * 3. The end-user documentation included with the redistribution, if
 *    any, must include the following acknowlegement:  
 *       "This product includes software developed by the 
 *        Apache Software Foundation (http://www.apache.org/)."
 *    Alternately, this acknowlegement may appear in the software itself,
 *    if and wherever such third-party acknowlegements normally appear.
 *
 * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
 *    Foundation" must not be used to endorse or promote products derived
 *    from this software without prior written permission. For written 
 *    permission, please contact apache@apache.org.
 *
 * 5. Products derived from this software may not be called "Apache"
 *    nor may "Apache" appear in their names without prior written
 *    permission of the Apache Group.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR
 * ITS 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.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 *
 * ====================================================================
 *
 * This source code implements specifications defined by the Java
 * Community Process. In order to remain compliant with the specification
 * DO NOT add / change / or delete method signatures!
 */

package javax.servlet;

import java.io.InputStream;
import java.io.IOException;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.Enumeration;


/**
 * 
 * Defines a set of methods that a servlet uses to communicate with its
 * servlet container, for example, to get the MIME type of a file, dispatch
 * requests, or write to a log file.
 *
 * <p>There is one context per "web application" per Java Virtual Machine.  (A
 * "web application" is a collection of servlets and content installed under a
 * specific subset of the server's URL namespace such as <code>/catalog</code>
 * and possibly installed via a <code>.war</code> file.) 
 *
 * <p>In the case of a web
 * application marked "distributed" in its deployment descriptor, there will
 * be one context instance for each virtual machine.  In this situation, the 
 * context cannot be used as a location to share global information (because
 * the information won't be truly global).  Use an external resource like 
 * a database instead.
 *
 * <p>The <code>ServletContext</code> object is contained within 
 * the {@link ServletConfig} object, which the Web server provides the
 * servlet when the servlet is initialized.
 *
 * @author 	Various
 * @version 	$Version$
 *
 * @see 	Servlet#getServletConfig
 * @see 	ServletConfig#getServletContext
 *
 */

public interface ServletContext {


    /**
     * Returns a <code>ServletContext</code> object that 
     * corresponds to a specified URL on the server.
     *
     * <p>This method allows servlets to gain
     * access to the context for various parts of the server, and as
     * needed obtain {@link RequestDispatcher} objects from the context.
     * The given path must be absolute (beginning with "/") and is 
     * interpreted based on the server's document root. 
     * 
     * <p>In a security conscious environment, the servlet container may
     * return <code>null</code> for a given URL.
     *       
     * @param uripath 	a <code>String</code> specifying the absolute URL of 
     *			a resource on the server
     *
     * @return		the <code>ServletContext</code> object that
     *			corresponds to the named URL
     *
     * @see 		RequestDispatcher
     *
     */

    public ServletContext getContext(String uripath);
    
    

    /**
     * Returns the major version of the Java Servlet API that this
     * servlet container supports. All implementations that comply
     * with Version 2.2 must have this method
     * return the integer 2.
     *
     * @return 		2
     *
     */
    
    public int getMajorVersion();
    
    

    /**
     * Returns the minor version of the Servlet API that this
     * servlet container supports. All implementations that comply
     * with Version 2.2 must have this method
     * return the integer 2.
     *
     * @return 		2
     *
     */

    public int getMinorVersion();
    
    

    /**
     * Returns the MIME type of the specified file, or <code>null</code> if 
     * the MIME type is not known. The MIME type is determined
     * by the configuration of the servlet container, and may be specified
     * in a web application deployment descriptor. Common MIME
     * types are <code>"text/html"</code> and <code>"image/gif"</code>.
     *
     *
     * @param   file    a <code>String</code> specifying the name
     *			of a file
     *
     * @return 		a <code>String</code> specifying the file's MIME type
     *
     */

    public String getMimeType(String file);
    
    

    /**
     * Returns a URL to the resource that is mapped to a specified
     * path. The path must begin with a "/" and is interpreted
     * as relative to the current context root.
     *
     * <p>This method allows the servlet container to make a resource 
     * available to servlets from any source. Resources 
     * can be located on a local or remote
     * file system, in a database, or in a <code>.war</code> file. 
     *
     * <p>The servlet container must implement the URL handlers
     * and <code>URLConnection</code> objects that are necessary
     * to access the resource.
     *
     * <p>This method returns <code>null</code>
     * if no resource is mapped to the pathname.
     *
     * <p>Some containers may allow writing to the URL returned by
     * this method using the methods of the URL class.
     *
     * <p>The resource content is returned directly, so be aware that 
     * requesting a <code>.jsp</code> page returns the JSP source code.
     * Use a <code>RequestDispatcher</code> instead to include results of 
     * an execution.
     *
     * <p>This method has a different purpose than
     * <code>java.lang.Class.getResource</code>,
     * which looks up resources based on a class loader. This
     * method does not use class loaders.
     * 
     * @param path 				a <code>String</code> specifying
     *						the path to the resource
     *
     * @return 					the resource located at the named path,
     * 						or <code>null</code> if there is no resource
     *						at that path
     *
     * @exception MalformedURLException 	if the pathname is not given in 
     * 						the correct form
     *
     */
    
    public URL getResource(String path) throws MalformedURLException;
    
    

    /**
     * Returns the resource located at the named path as
     * an <code>InputStream</code> object.
     *
     * <p>The data in the <code>InputStream</code> can be 
     * of any type or length. The path must be specified according
     * to the rules given in <code>getResource</code>.
     * This method returns <code>null</code> if no resource exists at
     * the specified path. 
     * 
     * <p>Meta-information such as content length and content type
     * that is available via <code>getResource</code>
     * method is lost when using this method.
     *
     * <p>The servlet container must implement the URL handlers
     * and <code>URLConnection</code> objects necessary to access
     * the resource.
     *
     * <p>This method is different from 
     * <code>java.lang.Class.getResourceAsStream</code>,
     * which uses a class loader. This method allows servlet containers 
     * to make a resource available
     * to a servlet from any location, without using a class loader.
     * 
     *
     * @param name 	a <code>String</code> specifying the path
     *			to the resource
     *
     * @return 		the <code>InputStream</code> returned to the 
     *			servlet, or <code>null</code> if no resource
     *			exists at the specified path 
     *
     *
     */

    public InputStream getResourceAsStream(String path);
    



    /**
     * 
     * Returns a {@link RequestDispatcher} object that acts
     * as a wrapper for the resource located at the given path.
     * A <code>RequestDispatcher</code> object can be used to forward 
     * a request to the resource or to include the resource in a response.
     * The resource can be dynamic or static.
     *
     * <p>The pathname must begin with a "/" and is interpreted as relative
     * to the current context root.  Use <code>getContext</code> to obtain
     * a <code>RequestDispatcher</code> for resources in foreign contexts.
     * This method returns <code>null</code> if the <code>ServletContext</code>
     * cannot return a <code>RequestDispatcher</code>.
     *
     * @param path 	a <code>String</code> specifying the pathname
     *			to the resource
     *
     * @return 		a <code>RequestDispatcher</code> object
     *			that acts as a wrapper for the resource
     *			at the specified path
     *
     * @see 		RequestDispatcher
     * @see 		ServletContext#getContext
     *
     */

    public RequestDispatcher getRequestDispatcher(String path);



    /**
     * Returns a {@link RequestDispatcher} object that acts
     * as a wrapper for the named servlet.
     *
     * <p>Servlets (and JSP pages also) may be given names via server 
     * administration or via a web application deployment descriptor.
     * A servlet instance can determine its name using 
     * {@link ServletConfig#getServletName}.
     *
     * <p>This method returns <code>null</code> if the 
     * <code>ServletContext</code>
     * cannot return a <code>RequestDispatcher</code> for any reason.
     *
     * @param name 	a <code>String</code> specifying the name
     *			of a servlet to wrap
     *
     * @return 		a <code>RequestDispatcher</code> object
     *			that acts as a wrapper for the named servlet
     *
     * @see 		RequestDispatcher
     * @see 		ServletContext#getContext
     * @see 		ServletConfig#getServletName
     *
     */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
狠狠久久亚洲欧美| 日韩va亚洲va欧美va久久| 成人精品电影在线观看| 欧美高清在线精品一区| 99久久er热在这里只有精品66| 国产日韩v精品一区二区| 成人午夜又粗又硬又大| 亚洲欧美日韩国产中文在线| 在线精品视频免费播放| 日本欧美肥老太交大片| 亚洲精品在线观看网站| 成人a区在线观看| 一区二区三区免费观看| 91精品国产免费| 国产成人一级电影| 一区二区三区四区精品在线视频| 欧美日韩一区二区三区免费看| 美女脱光内衣内裤视频久久影院| 久久精品视频免费观看| 91美女精品福利| 日韩国产精品大片| 国产精品久久久久一区二区三区| 在线免费观看日韩欧美| 裸体在线国模精品偷拍| 国产精品女人毛片| 欧美美女一区二区| 高潮精品一区videoshd| 亚洲一区国产视频| 欧美韩日一区二区三区| 欧美疯狂性受xxxxx喷水图片| 国产精品18久久久久久vr| 有坂深雪av一区二区精品| 精品999久久久| 欧美日韩精品系列| jlzzjlzz欧美大全| 国产精品一二二区| 亚洲一区二区三区影院| 久久综合色婷婷| 欧美日韩精品系列| 91老司机福利 在线| 九九在线精品视频| 亚洲福利视频一区二区| 国产精品丝袜91| 日韩免费观看高清完整版| 在线一区二区三区| 成人app软件下载大全免费| 日韩va亚洲va欧美va久久| 亚洲在线视频一区| 国产精品色在线| 久久九九99视频| 欧美一级欧美三级在线观看| 欧美在线综合视频| www.亚洲精品| 国产成人精品网址| 国产在线麻豆精品观看| 麻豆国产欧美一区二区三区| 亚洲不卡在线观看| 一区二区在线免费观看| 日韩伦理av电影| 欧美激情在线免费观看| 久久精品亚洲乱码伦伦中文| 日韩欧美aaaaaa| 欧美一区二区三区小说| 欧美麻豆精品久久久久久| 欧美性xxxxxxxx| 欧美日韩一卡二卡| 欧美日韩在线三级| 欧美性一二三区| 欧美色图一区二区三区| 在线观看日韩电影| 欧美视频日韩视频| 欧美巨大另类极品videosbest| 欧美日韩精品专区| 欧美一区2区视频在线观看| 欧美三级视频在线| 欧美猛男男办公室激情| 欧美电影一区二区| 欧美午夜精品免费| 91麻豆精品国产91久久久使用方法 | 国产经典欧美精品| 国产精品综合网| 国产福利91精品| 成人黄色免费短视频| 成人黄色a**站在线观看| 91片黄在线观看| 欧美亚洲国产怡红院影院| 欧洲国产伦久久久久久久| 欧美色图片你懂的| 欧美v国产在线一区二区三区| 欧美成人精品高清在线播放 | 久久久国产一区二区三区四区小说 | 国产999精品久久久久久绿帽| 国产精品一区二区果冻传媒| 国产99久久久精品| 色菇凉天天综合网| 日韩视频免费观看高清完整版 | 亚洲成人午夜影院| 久草热8精品视频在线观看| 国产精品一区二区三区99| 99热精品一区二区| 欧美中文字幕亚洲一区二区va在线| 欧美一区二区视频在线观看2020| 日韩精品中文字幕一区| 国产日本一区二区| 一区二区三区视频在线观看| 日韩国产精品大片| 国产91丝袜在线观看| 欧美在线视频日韩| 精品乱人伦小说| 亚洲三级久久久| 老司机免费视频一区二区| 成人性色生活片| 欧美一级高清片| 国产精品美女久久久久aⅴ| 亚洲成人精品在线观看| 国产乱妇无码大片在线观看| 91久久香蕉国产日韩欧美9色| 91.xcao| 中文字幕一区二区日韩精品绯色 | 水野朝阳av一区二区三区| 国内精品久久久久影院薰衣草 | 欧美一区二区三区四区在线观看| 国产午夜精品福利| 日韩在线卡一卡二| av亚洲精华国产精华精| 欧美一级日韩不卡播放免费| 亚洲人快播电影网| 韩国av一区二区三区在线观看| 在线精品国精品国产尤物884a | 国产日韩欧美高清在线| 亚洲国产人成综合网站| 成人午夜看片网址| 欧美成人高清电影在线| 夜夜嗨av一区二区三区四季av| 国产精品69久久久久水密桃| 欧美日韩久久久| 亚洲精品高清视频在线观看| 粉嫩一区二区三区在线看| 日韩一级片网址| 亚洲国产一区在线观看| 97精品久久久久中文字幕 | 成人免费视频一区二区| 欧美一级日韩不卡播放免费| 夜夜精品浪潮av一区二区三区 | 91麻豆国产精品久久| 久久久影视传媒| 日本成人在线电影网| 欧美专区在线观看一区| 国产精品传媒视频| 丰满少妇在线播放bd日韩电影| 日韩你懂的在线播放| 日韩高清国产一区在线| 欧美系列日韩一区| 一区二区理论电影在线观看| www.欧美日韩国产在线| 国产欧美日韩在线观看| 国产另类ts人妖一区二区| 欧美刺激午夜性久久久久久久| 五月天精品一区二区三区| 欧美色图天堂网| 亚洲电影你懂得| 3atv在线一区二区三区| 日本最新不卡在线| 宅男噜噜噜66一区二区66| 日本vs亚洲vs韩国一区三区二区| 欧美日韩小视频| 午夜久久久影院| 91精品国产福利在线观看| 丝袜亚洲另类丝袜在线| 欧美精品第一页| 日本中文字幕一区二区有限公司| 538在线一区二区精品国产| 日韩av一级电影| 日韩免费在线观看| 韩国一区二区三区| 国产日韩av一区| 91免费看视频| 亚洲国产视频一区| 91精品国产综合久久久久久漫画| 日本在线不卡视频| 日韩免费电影一区| 高清成人在线观看| 亚洲精品高清在线观看| 51精品视频一区二区三区| 久久99精品一区二区三区 | 一本到不卡免费一区二区| 亚洲精品国产a久久久久久| 欧美羞羞免费网站| 奇米影视一区二区三区小说| 欧美大度的电影原声| 国产成人无遮挡在线视频| 亚洲欧洲av色图| 欧美性一区二区| 国内成人精品2018免费看| 国产精品久久看| 欧美精品高清视频| 粉嫩高潮美女一区二区三区| 亚洲愉拍自拍另类高清精品| 日韩一区二区精品| 99精品欧美一区二区三区小说|