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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? genericservlet.java

?? 一個(gè)JAVA的聊天程序
?? JAVA
字號(hào):
/*
 * 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.IOException;
import java.util.Enumeration;

/**
 *
 * Defines a generic, protocol-independent
 * servlet. To write an HTTP servlet for use on the
 * Web, extend {@link javax.servlet.http.HttpServlet} instead.
 *
 * <p><code>GenericServlet</code> implements the <code>Servlet</code>
 * and <code>ServletConfig</code> interfaces. <code>GenericServlet</code>
 * may be directly extended by a servlet, although it's more common to extend
 * a protocol-specific subclass such as <code>HttpServlet</code>.
 *
 * <p><code>GenericServlet</code> makes writing servlets
 * easier. It provides simple versions of the lifecycle methods 
 * <code>init</code> and <code>destroy</code> and of the methods 
 * in the <code>ServletConfig</code> interface. <code>GenericServlet</code>
 * also implements the <code>log</code> method, declared in the
 * <code>ServletContext</code> interface. 
 *
 * <p>To write a generic servlet, you need only
 * override the abstract <code>service</code> method. 
 *
 *
 * @author 	Various
 * @version 	$Version$
 *
 *
 *
 */

 
public abstract class GenericServlet 
    implements Servlet, ServletConfig, java.io.Serializable
{

    private transient ServletConfig config;
    

    /**
     *
     * Does nothing. All of the servlet initialization
     * is done by one of the <code>init</code> methods.
     *
     */

    public GenericServlet() { }
    
    
    
   /**
     * Called by the servlet container to indicate to a servlet that the
     * servlet is being taken out of service.  See {@link Servlet#destroy}.
     *
     * 
     */

    public void destroy() {
	log("destroy");
    }
    
    
    
    /**
     * Returns a <code>String</code> containing the value of the named
     * initialization parameter, or <code>null</code> if the parameter does
     * not exist.  See {@link ServletConfig#getInitParameter}.
     *
     * <p>This method is supplied for convenience. It gets the 
     * value of the named parameter from the servlet's 
     * <code>ServletConfig</code> object.
     *
     * @param name 		a <code>String</code> specifying the name 
     *				of the initialization parameter
     *
     * @return String 		a <code>String</code> containing the value
     *				of the initalization parameter
     *
     */ 

    public String getInitParameter(String name) {
	return getServletConfig().getInitParameter(name);
    }
    
    

   /**
    * Returns the names of the servlet's initialization parameters 
    * as an <code>Enumeration</code> of <code>String</code> objects,
    * or an empty <code>Enumeration</code> if the servlet has no
    * initialization parameters.  See {@link
    * ServletConfig#getInitParameterNames}.
    *
    * <p>This method is supplied for convenience. It gets the 
    * parameter names from the servlet's <code>ServletConfig</code> object. 
    *
    *
    * @return Enumeration 	an enumeration of <code>String</code>
    *				objects containing the names of 
    *				the servlet's initialization parameters
    *
    */

    public Enumeration getInitParameterNames() {
	return getServletConfig().getInitParameterNames();
    }   
    
     
 
     

    /**
     * Returns this servlet's {@link ServletConfig} object.
     *
     * @return ServletConfig 	the <code>ServletConfig</code> object
     *				that initialized this servlet
     *
     */
    
    public ServletConfig getServletConfig() {
	return config;
    }
    
    
 
    
    /**
     * Returns a reference to the {@link ServletContext} in which this servlet
     * is running.  See {@link ServletConfig#getServletContext}.
     *
     * <p>This method is supplied for convenience. It gets the 
     * context from the servlet's <code>ServletConfig</code> object.
     *
     *
     * @return ServletContext 	the <code>ServletContext</code> object
     *				passed to this servlet by the <code>init</code>
     *				method
     *
     */

    public ServletContext getServletContext() {
	return getServletConfig().getServletContext();
    }



 

    /**
     * Returns information about the servlet, such as 
     * author, version, and copyright. 
     * By default, this method returns an empty string.  Override this method
     * to have it return a meaningful value.  See {@link
     * Servlet#getServletInfo}.
     *
     *
     * @return String 		information about this servlet, by default an
     * 				empty string
     *
     */
    
    public String getServletInfo() {
	return "";
    }




    /**
     *
     * Called by the servlet container to indicate to a servlet that the
     * servlet is being placed into service.  See {@link Servlet#init}.
     *
     * <p>This implementation stores the {@link ServletConfig}
     * object it receives from the servlet container for alter use.
     * When overriding this form of the method, call 
     * <code>super.init(config)</code>.
     *
     * @param config 			the <code>ServletConfig</code> object
     *					that contains configutation
     *					information for this servlet
     *
     * @exception ServletException 	if an exception occurs that
     *					interrupts the servlet's normal
     *					operation
     *
     * 
     * @see 				UnavailableException
     *
     */

    public void init(ServletConfig config) throws ServletException {
	this.config = config;
	log("init");
	this.init();
    }





    /**
     *
     * A convenience method which can be overridden so that there's no need
     * to call <code>super.init(config)</code>.
     *
     * <p>Instead of overriding {@link #init(ServletConfig)}, simply override
     * this method and it will be called by
     * <code>GenericServlet.init(ServletConfig config)</code>.
     * The <code>ServletConfig</code> object can still be retrieved via {@link
     * #getServletConfig}. 
     *
     * @exception ServletException 	if an exception occurs that
     *					interrupts the servlet's
     *					normal operation
     *
     */
    
    public void init() throws ServletException {

    }
    



    /**
     * 
     * Writes the specified message to a servlet log file, prepended by the
     * servlet's name.  See {@link ServletContext#log(String)}.
     *
     * @param msg 	a <code>String</code> specifying
     *			the message to be written to the log file
     *
     */
     
    public void log(String msg) {
	getServletContext().log(getServletName() + ": "+ msg);
    }
   
   
   
   
    /**
     * Writes an explanatory message and a stack trace
     * for a given <code>Throwable</code> exception
     * to the servlet log file, prepended by the servlet's name.
     * See {@link ServletContext#log(String, Throwable)}.
     *
     *
     * @param message 		a <code>String</code> that describes
     *				the error or exception
     *
     * @param t			the <code>java.lang.Throwable</code> error
     * 				or exception
     *
     *
     */
   
    public void log(String message, Throwable t) {
	getServletContext().log(getServletName() + ": " + message, t);
    }
    
    
    
    /**
     * Called by the servlet container to allow the servlet to respond to
     * a request.  See {@link Servlet#service}.
     * 
     * <p>This method is declared abstract so subclasses, such as 
     * <code>HttpServlet</code>, must override it.
     *
     *
     *
     * @param req 	the <code>ServletRequest</code> object
     *			that contains the client's request
     *
     * @param res 	the <code>ServletResponse</code> object
     *			that will contain the servlet's response
     *
     * @exception ServletException 	if an exception occurs that
     *					interferes with the servlet's
     *					normal operation occurred
     *
     * @exception IOException 		if an input or output
     *					exception occurs
     *
     */

    public abstract void service(ServletRequest req, ServletResponse res)
	throws ServletException, IOException;
    


    /**
     * Returns the name of this servlet instance.
     * See {@link ServletConfig#getServletName}.
     *
     * @return          the name of this servlet instance
     *
     *
     *
     */

    public String getServletName() {
        return config.getServletName();
    }
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av中文一区二区三区| 国产欧美精品在线观看| 精品av久久707| 亚洲久草在线视频| 麻豆精品一二三| 日本道在线观看一区二区| 日韩欧美另类在线| 亚洲成人一区在线| 色8久久人人97超碰香蕉987| 久久精品一区二区三区不卡| 日本成人在线视频网站| 91在线精品一区二区| 久久久亚洲精品石原莉奈| 亚洲va国产va欧美va观看| 日本丶国产丶欧美色综合| 中文无字幕一区二区三区| 久久国产精品99精品国产| 欧美日韩国产综合一区二区三区| 国产精品不卡在线观看| 国产一区中文字幕| 日韩欧美视频一区| 日本欧美韩国一区三区| 欧美日韩在线精品一区二区三区激情| 中文字幕一区二区三区在线播放 | 国产精品亚洲成人| 欧美日韩成人高清| 亚洲风情在线资源站| 色婷婷av一区二区三区gif | 午夜欧美在线一二页| a4yy欧美一区二区三区| 国产精品久久久久7777按摩| 国产福利精品导航| 国产视频一区二区在线| 国产不卡在线视频| 国产精品夫妻自拍| 91免费观看视频| 日韩毛片在线免费观看| 91麻豆视频网站| 亚洲日本欧美天堂| 欧美揉bbbbb揉bbbbb| 日韩高清电影一区| 精品日产卡一卡二卡麻豆| 久久99精品久久久久久国产越南 | 亚洲欧美日韩国产成人精品影院| 大桥未久av一区二区三区中文| 国产亚洲一区二区三区四区 | 69精品人人人人| 美女视频网站黄色亚洲| 欧美精品一区视频| 成人av网站免费| 一区二区三区在线播放| 欧美一级高清片在线观看| 狠狠v欧美v日韩v亚洲ⅴ| 国产精品青草久久| 欧美午夜寂寞影院| 久久精品国产久精国产爱| 国产日韩精品视频一区| 色婷婷香蕉在线一区二区| 奇米影视7777精品一区二区| 欧美精品一区二区三区在线播放 | 国产精品盗摄一区二区三区| 99精品久久只有精品| 亚洲成人动漫在线免费观看| 久久亚洲欧美国产精品乐播 | 欧美一三区三区四区免费在线看| 狠狠久久亚洲欧美| 亚洲精品免费看| 日韩一区二区精品葵司在线| 成人精品一区二区三区四区 | 亚洲免费观看高清完整版在线观看| 在线观看日韩精品| 国产精品香蕉一区二区三区| 一级做a爱片久久| 久久蜜桃av一区精品变态类天堂| 在线视频中文字幕一区二区| 国产精品一色哟哟哟| 亚洲在线中文字幕| 国产亚洲欧美一级| 日韩欧美在线综合网| 91免费版pro下载短视频| 久久国产日韩欧美精品| 亚洲在线一区二区三区| 国产精品午夜春色av| 欧美一区二区三区在线| 日本福利一区二区| 成人亚洲一区二区一| 黑人精品欧美一区二区蜜桃| 午夜免费欧美电影| 最新高清无码专区| 国产欧美日韩久久| 精品国产乱码久久久久久免费| 欧美午夜精品电影| 91美女在线观看| 波多野结衣精品在线| 国产一区视频网站| 日韩影院免费视频| 亚洲成人福利片| 亚洲一区二区三区中文字幕在线 | 伊人夜夜躁av伊人久久| 国产欧美一区二区在线观看| 26uuu另类欧美亚洲曰本| 91精品国产综合久久精品麻豆 | 亚洲18影院在线观看| 亚洲乱码国产乱码精品精小说| 中日韩免费视频中文字幕| 国产视频一区在线观看| 久久欧美一区二区| 久久久久久免费网| 国产亚洲一区二区三区在线观看 | 91精品国产高清一区二区三区蜜臀| 色婷婷久久久亚洲一区二区三区| 成人高清在线视频| 99精品偷自拍| 91高清视频在线| 91电影在线观看| 91久久免费观看| 精品视频一区 二区 三区| 欧美日免费三级在线| 欧美顶级少妇做爰| 337p亚洲精品色噜噜| 欧美一级二级在线观看| 欧美成人三级电影在线| 久久久久久久国产精品影院| 久久久久久久性| 国产精品久久久久久久久免费樱桃 | 成人精品gif动图一区| 91视频一区二区三区| 在线看不卡av| 3d成人h动漫网站入口| 精品福利二区三区| 国产精品久久久久久久久快鸭| 亚洲视频1区2区| 日韩中文字幕1| 国产一区二区福利视频| 成人黄色大片在线观看| 欧美视频自拍偷拍| 日韩免费在线观看| 国产精品成人一区二区三区夜夜夜| 亚洲精品福利视频网站| 蜜桃视频在线观看一区二区| 国产999精品久久久久久| 91在线观看下载| 91精品欧美久久久久久动漫 | 成人黄色777网| 欧美色电影在线| 久久久www成人免费毛片麻豆| 日韩一区欧美小说| 秋霞影院一区二区| caoporen国产精品视频| 欧美三区在线视频| 国产日韩影视精品| 亚洲成人福利片| 成人动漫一区二区在线| 精品视频在线免费看| 国产欧美精品一区二区色综合朱莉| 亚洲精品乱码久久久久久黑人| 老司机精品视频线观看86| 91麻豆视频网站| 精品国产乱码久久久久久夜甘婷婷 | 欧美在线免费观看视频| 精品欧美一区二区在线观看| 亚洲欧美电影一区二区| 久久狠狠亚洲综合| 日本韩国精品一区二区在线观看| 精品国产乱码久久久久久蜜臀| 亚洲一区在线观看视频| 成人性生交大合| 久久综合狠狠综合| 午夜精品久久久久久久久| 99精品视频在线免费观看| 久久综合九色综合97婷婷女人| 亚洲高清免费视频| 色综合久久久久网| 国产蜜臀av在线一区二区三区| 日韩电影免费在线观看网站| 91在线视频播放| 国产人妖乱国产精品人妖| 美女网站色91| 7777精品久久久大香线蕉| 亚洲午夜国产一区99re久久| av在线一区二区| 国产精品色呦呦| 国产成人精品亚洲午夜麻豆| 精品人伦一区二区色婷婷| 日本亚洲一区二区| 91麻豆精品国产91久久久久久久久| 一区二区三区 在线观看视频| 成人av在线网站| 国产人妖乱国产精品人妖| 国产麻豆91精品| 久久久一区二区三区捆绑**| 久久精品国产一区二区| 日韩天堂在线观看| 免费一级欧美片在线观看| 91精品国产丝袜白色高跟鞋| 日本va欧美va欧美va精品| 欧美精品国产精品| 日本不卡一区二区三区| 欧美一区二区视频观看视频| 日本美女一区二区三区视频|