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

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

?? servletcontext.java

?? 使用java語言編寫的小應用程序
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
    
    
    
    /**
     *
     * @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一区二区三区免费野_久草精品视频
午夜精品久久久久影视| 成人av在线观| av在线播放不卡| 日韩欧美国产一区在线观看| 国产精品蜜臀在线观看| 日本美女视频一区二区| 日本道在线观看一区二区| 久久久久久久久久久久电影| 日韩av电影天堂| 欧美在线色视频| 国产精品国产三级国产普通话三级 | 色系网站成人免费| 欧美精品一区二区久久久| 亚洲成人免费看| 在线免费视频一区二区| 国产精品久久久久久久久搜平片 | 99视频一区二区三区| 欧美va天堂va视频va在线| 香蕉久久一区二区不卡无毒影院| 成人sese在线| 国产欧美日韩在线看| 久久99热狠狠色一区二区| 欧美日韩国产综合视频在线观看| 国产精品福利一区| 99久久精品国产导航| 国产亚洲欧美日韩在线一区| 精品一区二区三区香蕉蜜桃 | 国产精品福利一区| 成人aa视频在线观看| 久久久久久久综合| 国产一区二区精品久久99 | 日本电影欧美片| 亚洲欧美另类小说| 色综合一区二区三区| 亚洲视频1区2区| av爱爱亚洲一区| 亚洲视频 欧洲视频| 91成人看片片| 肉丝袜脚交视频一区二区| 欧美日本国产一区| 青青草国产成人99久久| 日韩一二在线观看| 韩国成人福利片在线播放| 精品国产一区二区亚洲人成毛片 | 国产成a人亚洲| 国产精品久久影院| 欧美最猛性xxxxx直播| 偷偷要91色婷婷| 欧美一区二区三区免费| 韩国在线一区二区| 国产精品嫩草影院av蜜臀| 不卡av免费在线观看| 一区二区三区四区不卡在线 | 国产日韩亚洲欧美综合| www.亚洲精品| 日韩不卡一区二区| 久久新电视剧免费观看| 91在线高清观看| 午夜精品久久久久影视| 久久天天做天天爱综合色| 99久久久国产精品| 亚洲sss视频在线视频| 久久一区二区三区四区| 日本电影亚洲天堂一区| 久久99久久99| 亚洲欧洲日本在线| 91精品黄色片免费大全| 岛国精品在线播放| 午夜精品在线视频一区| 久久嫩草精品久久久精品一| 91久久一区二区| 国产在线不卡一卡二卡三卡四卡| 亚洲欧美日韩综合aⅴ视频| 欧美一区二区高清| 色美美综合视频| 国产精品夜夜嗨| 亚洲一区二区三区激情| 国产欧美中文在线| 538在线一区二区精品国产| 国产91丝袜在线18| 日韩电影在线一区二区三区| 国产精品国产a| 欧美成人在线直播| 欧美三级三级三级爽爽爽| 国产精品中文欧美| 日韩在线一二三区| 亚洲欧美区自拍先锋| 久久亚洲精精品中文字幕早川悠里 | 亚洲福利一二三区| 国产精品毛片大码女人| 日韩欧美你懂的| 欧美在线你懂的| 成人免费视频一区二区| 九九**精品视频免费播放| 亚洲高清视频在线| 亚洲免费观看高清在线观看| 国产欧美日韩三区| 久久日一线二线三线suv| 欧美一区二区三区播放老司机| 日本韩国一区二区| 91在线无精精品入口| 国产ts人妖一区二区| 久久99久久精品| 麻豆91在线看| 男人的j进女人的j一区| 天天亚洲美女在线视频| 亚洲午夜在线视频| 亚洲精品成人天堂一二三| 国产精品久久久久久久久久免费看| 精品日韩成人av| 欧美zozo另类异族| 精品三级在线观看| 2023国产精品自拍| 久久视频一区二区| 日本一区二区三区国色天香 | 精品免费国产一区二区三区四区| 91 com成人网| 日韩欧美一区中文| 日韩美女天天操| 欧美mv日韩mv亚洲| 亚洲精品在线三区| 国产午夜精品理论片a级大结局| 久久婷婷一区二区三区| 中文字幕不卡三区| 亚洲美女免费视频| 亚洲va欧美va人人爽午夜 | 三级在线观看一区二区| 天堂成人免费av电影一区| 天堂午夜影视日韩欧美一区二区| 美女看a上一区| 国产一区二区精品久久99| av亚洲产国偷v产偷v自拍| 99久久免费视频.com| 精品视频一区二区三区免费| 91精品国产aⅴ一区二区| 精品动漫一区二区三区在线观看| 国产色婷婷亚洲99精品小说| 国产精品久久久久7777按摩| 亚洲欧美国产毛片在线| 偷偷要91色婷婷| 国产一区在线精品| 99re视频精品| 69av一区二区三区| 日本一区二区三区视频视频| 一区二区三区**美女毛片| 另类小说综合欧美亚洲| www.视频一区| 911精品产国品一二三产区| 久久亚洲精品国产精品紫薇| 中文字幕一区二区三区乱码在线| 亚洲sss视频在线视频| 国产精品一二三区在线| 欧美私模裸体表演在线观看| 精品理论电影在线观看| 亚洲另类春色国产| 精彩视频一区二区三区| 91丨porny丨最新| 欧美大肚乱孕交hd孕妇| 综合色天天鬼久久鬼色| 麻豆一区二区在线| 91丨国产丨九色丨pron| 精品国产在天天线2019| 亚洲综合色丁香婷婷六月图片| 国产综合一区二区| 欧美中文一区二区三区| 国产性色一区二区| 日本在线观看不卡视频| 91在线观看一区二区| 日韩精品中文字幕一区| 亚洲国产婷婷综合在线精品| 国产成人丝袜美腿| 91精品国产麻豆| 一区二区三区日韩欧美| 不卡视频一二三| 久久久亚洲高清| 精品一区二区三区免费播放| 在线观看免费视频综合| 中文一区一区三区高中清不卡| 乱一区二区av| 91精品国产高清一区二区三区蜜臀| 亚洲另类春色国产| 99久久婷婷国产综合精品| 国产午夜三级一区二区三| 久久精品99国产精品日本| 欧美日韩一区 二区 三区 久久精品| 日韩一区日韩二区| 成人免费av资源| 国产日韩欧美一区二区三区综合| 蜜桃av一区二区三区| 91精品在线麻豆| 丝袜a∨在线一区二区三区不卡| 日本二三区不卡| 亚洲精品乱码久久久久久黑人| 国产91富婆露脸刺激对白| 久久中文娱乐网| 国产精品主播直播| 国产亚洲欧美一级| 国产高清不卡一区二区| 国产亚洲一区字幕| 国产99久久久国产精品免费看|