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

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

?? servletcontext.java

?? jsp數據庫系統
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
    public RequestDispatcher getNamedDispatcher(String name);
    
    
    
    
    /**
     *
     * @deprecated	As of Java Servlet API 2.1, with no direct replacement.
     *
     * <p>This method was originally defined to retrieve a servlet
     * from a <code>ServletContext</code>. In this version, this method 
     * always returns <code>null</code> and remains only to preserve 
     * binary compatibility. This method will be permanently removed 
     * in a future version of the Java Servlet API.
     *
     * <p>In lieu of this method, servlets can share information using the 
     * <code>ServletContext</code> class and can perform shared business logic
     * by invoking methods on common non-servlet classes.
     *
     */

    public Servlet getServlet(String name) throws ServletException;
    
  
  
  
    

    /**
     *
     * @deprecated	As of Java Servlet API 2.0, with no replacement.
     *
     * <p>This method was originally defined to return an <code>Enumeration</code>
     * of all the servlets known to this servlet context. In this
     * version, this method always returns an empty enumeration and
     * remains only to preserve binary compatibility. This method
     * will be permanently removed in a future version of the Java
     * Servlet API.
     *
     */
    
    public Enumeration getServlets();
    
    
    
    
    

    /**
     * @deprecated	As of Java Servlet API 2.1, with no replacement.
     *
     * <p>This method was originally defined to return an 
     * <code>Enumeration</code>
     * of all the servlet names known to this context. In this version,
     * this method always returns an empty <code>Enumeration</code> and 
     * remains only to preserve binary compatibility. This method will 
     * be permanently removed in a future version of the Java Servlet API.
     *
     */
 
    public Enumeration getServletNames();
    
  
  
    
    
    /**
     *
     * Writes the specified message to a servlet log file, usually
     * an event log. The name and type of the servlet log file is 
     * specific to the servlet container.
     *
     *
     * @param msg 	a <code>String</code> specifying the 
     *			message to be written to the log file
     *
     */
     
    public void log(String msg);
    
    
    
    

    /**
     * @deprecated	As of Java Servlet API 2.1, use
     * 			{@link #log(String message, Throwable throwable)} 
     *			instead.
     *
     * <p>This method was originally defined to write an 
     * exception's stack trace and an explanatory error message
     * to the servlet log file.
     *
     */

    public void log(Exception exception, String msg);
    
    
    
    

    /**
     * Writes an explanatory message and a stack trace
     * for a given <code>Throwable</code> exception
     * to the servlet log file. The name and type of the servlet log 
     * file is specific to the servlet container, usually an event log.
     *
     *
     * @param message 		a <code>String</code> that 
     *				describes the error or exception
     *
     * @param throwable 	the <code>Throwable</code> error 
     *				or exception
     *
     */
    
    public void log(String message, Throwable throwable);
    
    
    
    
    
    /**
     * Returns a <code>String</code> containing the real path 
     * for a given virtual path. For example, the virtual path "/index.html"
     * has a real path of whatever file on the server's filesystem would be
     * served by a request for "/index.html".
     *
     * <p>The real path returned will be in a form
     * appropriate to the computer and operating system on
     * which the servlet container is running, including the
     * proper path separators. This method returns <code>null</code>
     * if the servlet container cannot translate the virtual path
     * to a real path for any reason (such as when the content is
     * being made available from a <code>.war</code> archive).
     *
     *
     * @param path 	a <code>String</code> specifying a virtual path
     *
     *
     * @return 		a <code>String</code> specifying the real path,
     *                  or null if the translation cannot be performed
     *			
     *
     */

    public String getRealPath(String path);
    
    


    /**
     * Returns the name and version of the servlet container on which
     * the servlet is running. 
     *
     * <p>The form of the returned string is 
     * <i>servername</i>/<i>versionnumber</i>.
     * For example, the JavaServer Web Development Kit may return the string
     * <code>JavaServer Web Dev Kit/1.0</code>.
     *
     * <p>The servlet container may return other optional information 
     * after the primary string in parentheses, for example,
     * <code>JavaServer Web Dev Kit/1.0 (JDK 1.1.6; Windows NT 4.0 x86)</code>.
     *
     *
     * @return 		a <code>String</code> containing at least the 
     *			servlet container name and version number
     *
     */

    public String getServerInfo();
    
    


    /**
     * Returns a <code>String</code> containing the value of the named
     * context-wide initialization parameter, or <code>null</code> if the 
     * parameter does not exist.
     *
     * <p>This method can make available configuration information useful
     * to an entire "web application".  For example, it can provide a 
     * webmaster's email address or the name of a system that holds 
     * critical data.
     *
     * @param	name	a <code>String</code> containing the name of the
     *                  parameter whose value is requested
     * 
     * @return 		a <code>String</code> containing at least the 
     *			servlet container name and version number
     *
     * @see ServletConfig#getInitParameter
     */

    public String getInitParameter(String name);
    
    


    /**
     * Returns the names of the context's initialization parameters as an
     * <code>Enumeration</code> of <code>String</code> objects, or an
     * empty <code>Enumeration</code> if the context has no initialization
     * parameters.
     *
     * @return 		an <code>Enumeration</code> of <code>String</code> 
     *                  objects containing the names of the context's
     *                  initialization parameters
     *
     * @see ServletConfig#getInitParameter
     */

    public Enumeration getInitParameterNames();
    
    

    /**
     * Returns the servlet container attribute with the given name, 
     * or <code>null</code> if there is no attribute by that name.
     * An attribute allows a servlet container to give the
     * servlet additional information not
     * already provided by this interface. See your
     * server documentation for information about its attributes.
     * A list of supported attributes can be retrieved using
     * <code>getAttributeNames</code>.
     *
     * <p>The attribute is returned as a <code>java.lang.Object</code>
     * or some subclass.
     * Attribute names should follow the same convention as package
     * names. The Java Servlet API specification reserves names
     * matching <code>java.*</code>, <code>javax.*</code>,
     * and <code>sun.*</code>.
     *
     *
     * @param name 	a <code>String</code> specifying the name 
     *			of the attribute
     *
     * @return 		an <code>Object</code> containing the value 
     *			of the attribute, or <code>null</code>
     *			if no attribute exists matching the given
     *			name
     *
     * @see 		ServletContext#getAttributeNames
     *
     */
  
    public Object getAttribute(String name);
    
    
    

    /**
     * Returns an <code>Enumeration</code> containing the 
     * attribute names available
     * within this servlet context. Use the
     * {@link #getAttribute} method with an attribute name
     * to get the value of an attribute.
     *
     * @return 		an <code>Enumeration</code> of attribute 
     *			names
     *
     * @see		#getAttribute
     *
     */

    public Enumeration getAttributeNames();
    
    
    
    
    /**
     *
     * Binds an object to a given attribute name in this servlet context. If
     * the name specified is already used for an attribute, this
     * method will remove the old attribute and bind the name
     * to the new attribute.
     *
     * <p>Attribute names should follow the same convention as package
     * names. The Java Servlet API specification reserves names
     * matching <code>java.*</code>, <code>javax.*</code>, and
     * <code>sun.*</code>.
     *
     *
     * @param name 	a <code>String</code> specifying the name 
     *			of the attribute
     *
     * @param object 	an <code>Object</code> representing the
     *			attribute to be bound
     *
     *
     *
     */
    
    public void setAttribute(String name, Object object);
    
    



    /**
     * Removes the attribute with the given name from 
     * the servlet context. After removal, subsequent calls to
     * {@link #getAttribute} to retrieve the attribute's value
     * will return <code>null</code>.
     *
     *
     * @param name	a <code>String</code> specifying the name 
     * 			of the attribute to be removed
     *
     */

    public void removeAttribute(String name);
}


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
26uuu久久综合| 久久精品国产99国产| 亚洲欧洲日韩av| 最新日韩av在线| 国产精品家庭影院| 亚洲一区中文在线| 日本伊人午夜精品| 国产伦精品一区二区三区在线观看| 经典三级在线一区| 成人污视频在线观看| 色哟哟精品一区| 在线一区二区视频| 色综合久久综合网欧美综合网| 在线观看国产日韩| 日韩视频免费观看高清完整版| 久久综合色鬼综合色| 亚洲激情欧美激情| 日韩不卡一区二区| 日本va欧美va精品发布| 成人激情综合网站| 欧美日韩中文精品| 久久精品亚洲乱码伦伦中文| 亚洲人成人一区二区在线观看| 一区二区三区中文在线观看| 久草精品在线观看| kk眼镜猥琐国模调教系列一区二区| 欧美久久久久免费| 国产欧美一区二区三区沐欲| 亚洲精品乱码久久久久久黑人| 国产综合色在线| 色狠狠色狠狠综合| 日本一区二区三区在线观看| 亚洲第一会所有码转帖| 国产一区二区三区香蕉| 欧美日韩免费观看一区二区三区| 精品国产乱码久久久久久老虎| 亚洲精品视频在线观看网站| 老司机精品视频导航| 99re亚洲国产精品| 久久婷婷久久一区二区三区| 一区二区三区中文字幕电影| 成人黄色免费短视频| 欧美一区在线视频| 亚洲另类在线视频| 丁香六月综合激情| 91精品国产一区二区三区| 亚洲精品少妇30p| 国产在线播精品第三| 欧美午夜电影一区| 亚洲少妇30p| 国产精品一区二区久激情瑜伽| 欧美二区在线观看| 国产精品久久久久三级| 麻豆精品精品国产自在97香蕉| 欧美日韩视频专区在线播放| 国产精品天天看| 国产精品一区一区三区| 欧美浪妇xxxx高跟鞋交| 综合欧美亚洲日本| 成人av资源下载| 久久综合久久鬼色中文字| 免费观看成人av| 欧美日韩一区二区三区在线看| 久久久久国产精品厨房| 久久99精品网久久| 欧美一区二区三区四区高清| 午夜视频在线观看一区二区三区 | 粗大黑人巨茎大战欧美成人| 日韩精品一区二| 三级精品在线观看| 欧美精品在线视频| 亚洲一二三四区| av不卡免费电影| 亚洲精品免费在线观看| 成人av在线电影| 中文字幕亚洲综合久久菠萝蜜| 国产一区二区三区久久悠悠色av | 亚洲国产一区二区视频| 国产99久久久久久免费看农村| 精品福利一二区| 久久99久久99| 日韩欧美国产一区二区在线播放| 亚洲v精品v日韩v欧美v专区| 精品1区2区3区| 亚洲精品欧美综合四区| 99re热这里只有精品免费视频| 亚洲激情自拍视频| www.成人网.com| 一区二区三区在线高清| 日本精品视频一区二区| 午夜欧美2019年伦理| 欧美日韩美少妇| 激情深爱一区二区| 久久久高清一区二区三区| www.欧美日韩| 一区二区三区在线视频观看 | 91麻豆福利精品推荐| 51精品秘密在线观看| 日韩在线卡一卡二| 精品少妇一区二区三区免费观看 | 日韩高清不卡一区二区三区| 91精品国产91热久久久做人人| 青青草原综合久久大伊人精品优势 | 不卡电影免费在线播放一区| 欧美国产亚洲另类动漫| 色综合中文字幕国产 | 亚洲乱码国产乱码精品精98午夜| 色又黄又爽网站www久久| 日韩国产欧美在线播放| 欧美一级二级三级蜜桃| 综合久久国产九一剧情麻豆| 欧美精品亚洲二区| 全国精品久久少妇| 亚洲国产高清在线| 91丨porny丨户外露出| 五月天激情综合网| 日韩视频一区二区在线观看| 久久99在线观看| 国产亚洲欧美日韩俺去了| 成人免费毛片高清视频| 丝瓜av网站精品一区二区| 日韩欧美黄色影院| 成人av电影观看| 亚洲女同一区二区| 国产一区二区在线电影| 亚洲欧美另类久久久精品| 色噜噜久久综合| 狠狠久久亚洲欧美| ●精品国产综合乱码久久久久| 制服丝袜亚洲色图| 成人免费观看视频| 天堂va蜜桃一区二区三区漫画版| 日韩精品中午字幕| 国产精一区二区三区| 亚洲国产一区视频| 久久这里只有精品视频网| 在线观看av一区二区| 日本vs亚洲vs韩国一区三区二区 | 本田岬高潮一区二区三区| 亚洲自拍偷拍九九九| 久久蜜桃香蕉精品一区二区三区| 色激情天天射综合网| 麻豆精品蜜桃视频网站| 亚洲精品国产视频| 精品久久国产老人久久综合| 在线视频一区二区免费| 国内成人免费视频| 日韩电影在线观看网站| 欧美激情中文字幕一区二区| 欧美日韩一区成人| 97精品久久久久中文字幕| 免费成人你懂的| 亚洲综合成人网| 国产日韩高清在线| 日韩欧美激情四射| 欧美亚洲国产一区在线观看网站| 日韩精品乱码av一区二区| 亚洲男同性视频| www精品美女久久久tv| 91精品国产全国免费观看| 成人爱爱电影网址| 国产成人av一区二区三区在线| 亚洲国产日韩a在线播放性色| 日韩亚洲欧美综合| 99精品欧美一区二区三区小说 | 国产裸体歌舞团一区二区| 亚洲成人av一区二区| 亚洲欧美日韩成人高清在线一区| 精品美女一区二区| 日韩欧美第一区| 欧美偷拍一区二区| 成人免费观看视频| 成人一区二区三区| 国内精品在线播放| 国模少妇一区二区三区| 日韩精品电影一区亚洲| 亚洲大片在线观看| 国产精品成人午夜| 国产精品久久久久久久蜜臀| 亚洲精品在线网站| 欧美日韩综合一区| 欧美日韩国产精选| 91搞黄在线观看| 在线看日本不卡| 91视频免费看| 色吊一区二区三区| 99热精品一区二区| 不卡的av网站| 成人性生交大片免费看中文网站| 国产成人精品三级麻豆| 黄色日韩网站视频| 偷拍日韩校园综合在线| 日韩中文字幕av电影| 欧美va在线播放| 欧美精品视频www在线观看| 欧美性猛片aaaaaaa做受| 欧美伦理电影网| 欧美剧在线免费观看网站| 91福利国产精品| 欧美综合欧美视频|