亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美丰满一区二区免费视频| 日本一区二区综合亚洲| 欧美精品一区二区在线播放| 国产婷婷一区二区| 午夜精品一区在线观看| 国产在线视频精品一区| 在线免费亚洲电影| 国产调教视频一区| 麻豆91精品视频| 欧美图片一区二区三区| 亚洲人成在线播放网站岛国| 国产毛片精品国产一区二区三区| 欧美日韩激情一区二区三区| 国产精品白丝在线| 国产成人精品免费网站| 精品免费日韩av| 另类中文字幕网| 欧美人与禽zozo性伦| 一区二区三区在线视频观看 | 一区二区高清免费观看影视大全| 久久精品国产亚洲5555| 欧美人成免费网站| 亚洲综合视频在线观看| 在线免费亚洲电影| 亚洲一区日韩精品中文字幕| 色综合婷婷久久| 亚洲伦在线观看| 99精品热视频| 亚洲人xxxx| 91老师国产黑色丝袜在线| 国产精品亲子乱子伦xxxx裸| 国产成人免费在线观看不卡| 国产亚洲欧美色| 不卡av在线免费观看| 国产精品欧美精品| 成人av高清在线| 自拍av一区二区三区| 一本色道久久综合亚洲aⅴ蜜桃| 中文字幕亚洲不卡| 日本黄色一区二区| 天天影视色香欲综合网老头| 91精品在线观看入口| 日本不卡的三区四区五区| 日韩免费看网站| 国产成人aaa| 中文字幕在线视频一区| 一本大道久久a久久精品综合 | 精品久久一区二区三区| 久久精品国产久精国产| 国产午夜亚洲精品午夜鲁丝片| 国产成人精品1024| 国产精品久久看| 国产成人自拍在线| 亚洲免费av在线| 日韩一卡二卡三卡国产欧美| 国产酒店精品激情| 亚洲视频小说图片| 777亚洲妇女| 国产成人在线观看| 一二三区精品视频| 亚洲精选免费视频| 欧美一卡二卡在线观看| 国产精品一区二区久久不卡 | 日韩无一区二区| 国产91综合网| 午夜视频一区二区三区| 久久综合久久综合亚洲| 91视视频在线观看入口直接观看www | 亚洲福利视频导航| 国产色综合久久| 欧美猛男超大videosgay| 精品一区二区三区蜜桃| 国产精品少妇自拍| 91精品国产综合久久精品性色| 国产精品99久久久久久宅男| 亚洲一级二级三级| 久久久三级国产网站| 色婷婷久久99综合精品jk白丝| 青青国产91久久久久久| 亚洲色图.com| 久久久三级国产网站| 欧美视频一二三区| 暴力调教一区二区三区| 蜜桃视频免费观看一区| 亚洲视频香蕉人妖| 国产日韩欧美不卡| 欧美一级精品在线| 欧美影视一区二区三区| 成人精品小蝌蚪| 韩国成人福利片在线播放| 亚洲一区二区在线免费看| 国产婷婷色一区二区三区| 91精品免费观看| 欧美午夜精品久久久久久超碰| 成人午夜在线视频| 麻豆一区二区三| 亚洲国产精品嫩草影院| 中文字幕不卡一区| 欧美精品一区二区三区一线天视频 | 色成年激情久久综合| 国产精品中文字幕日韩精品| 三级不卡在线观看| 亚洲线精品一区二区三区八戒| 国产精品久久三区| 国产精品视频看| 国产精品人妖ts系列视频| 2014亚洲片线观看视频免费| 日韩欧美一区二区不卡| 91精品国产综合久久久久久| 欧美日韩在线三区| 日本韩国欧美三级| 在线视频欧美区| 欧美午夜精品久久久久久孕妇| 日本韩国欧美三级| 精品视频一区二区不卡| 欧美亚洲国产一区在线观看网站| 99久久免费国产| 91网上在线视频| 欧美性一二三区| 欧美人与z0zoxxxx视频| 91精品国产欧美一区二区| 7777精品伊人久久久大香线蕉的| 欧美日韩国产乱码电影| 欧美日本乱大交xxxxx| 欧美精品免费视频| 欧美一级二级三级乱码| 精品国产人成亚洲区| 国产三级一区二区三区| 亚洲欧美中日韩| 亚洲精品国产成人久久av盗摄| 亚洲综合免费观看高清完整版在线 | 成人av电影在线| 91丨九色丨蝌蚪丨老版| 欧美午夜在线观看| 91精品国产色综合久久不卡电影| 日韩你懂的在线播放| 欧美激情一区二区| 一级精品视频在线观看宜春院| 丝袜美腿亚洲一区| 韩日av一区二区| 波多野结衣中文一区| 欧美唯美清纯偷拍| 欧美不卡一二三| 亚洲三级电影网站| 日韩不卡一二三区| 成人v精品蜜桃久久一区| 在线欧美一区二区| 精品福利在线导航| 国产精品久久久久久久久免费樱桃| 亚洲日本在线天堂| 蜜桃一区二区三区在线观看| 国产成人免费视频| 欧美性生活一区| 久久久久国产精品麻豆ai换脸 | 午夜精品在线视频一区| 精品一区二区三区视频在线观看| 成人午夜电影网站| 欧美高清视频在线高清观看mv色露露十八 | 青青草原综合久久大伊人精品优势| 国产精品正在播放| 欧美日韩免费不卡视频一区二区三区 | 欧美日韩在线播放三区四区| 精品国产露脸精彩对白| 亚洲女人小视频在线观看| 九九**精品视频免费播放| 色综合久久久久| 欧美国产日产图区| 免费在线成人网| 91福利国产成人精品照片| 久久女同性恋中文字幕| 视频一区欧美精品| 91视频91自| 国产网站一区二区三区| 麻豆免费精品视频| 欧美唯美清纯偷拍| 亚洲欧美成人一区二区三区| 国产精品一区二区在线播放| 欧美一区二区三区日韩| 一区二区三区精品视频在线| 国产成人aaa| 久久婷婷成人综合色| 日韩成人一区二区| 欧美精三区欧美精三区| 亚洲码国产岛国毛片在线| 成人精品视频一区二区三区 | 国产精品国产馆在线真实露脸 | 国产亚洲视频系列| 奇米四色…亚洲| 欧美日韩激情一区| 亚洲第一av色| 欧洲人成人精品| 亚洲欧美另类久久久精品2019| 国产不卡一区视频| 国产亚洲女人久久久久毛片| 韩国欧美国产一区| 久久久高清一区二区三区| 黄色日韩网站视频| 国产视频一区在线观看| 国产精品一级在线| 欧美国产一区二区在线观看|