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

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

?? genericservlet.java

?? 用java編的一個聊天程序
?? JAVA
字號:
/*
 * 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
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久日韩精品一区二区五区| 综合分类小说区另类春色亚洲小说欧美 | 欧美午夜一区二区三区| 国产精品传媒视频| 91免费看`日韩一区二区| 一区二区在线观看视频在线观看| 国内久久婷婷综合| 国产精品拍天天在线| 91碰在线视频| 视频一区欧美精品| 精品久久久久av影院| 成人精品免费看| 亚洲精品欧美激情| 91精品国产免费久久综合| 国产一区二区三区精品欧美日韩一区二区三区 | 丝袜美腿高跟呻吟高潮一区| 欧美一区二区久久| 国产激情视频一区二区三区欧美| 亚洲欧洲一区二区三区| 欧美在线一区二区| 久久成人免费网| 综合久久久久久| 欧美影片第一页| 国产麻豆精品theporn| 亚洲女人的天堂| 精品国产一区二区三区四区四| 99久久精品一区| 黄色成人免费在线| 国产日韩欧美不卡在线| 91麻豆swag| 久久精品免费观看| 亚洲激情五月婷婷| 欧美一级在线观看| 一本大道综合伊人精品热热 | 自拍av一区二区三区| 69堂精品视频| 波多野结衣中文字幕一区| 丝袜诱惑亚洲看片| 亚洲天堂免费看| 精品少妇一区二区三区在线播放| 91麻豆视频网站| 国产一区二区视频在线| 亚洲国产精品视频| 国产精品久久久久久久浪潮网站 | 成人h动漫精品一区二区| 亚洲.国产.中文慕字在线| 中文字幕欧美三区| 日韩欧美国产精品一区| 欧美性大战久久久久久久蜜臀| 国产麻豆视频一区| 蜜桃视频在线观看一区二区| 亚洲黄色片在线观看| 国产三级精品三级在线专区| 欧美一区二区三区男人的天堂| 一本色道a无线码一区v| 成人污视频在线观看| 91福利在线观看| 久久电影网站中文字幕| 夜夜揉揉日日人人青青一国产精品| 久久在线免费观看| 日韩欧美一区在线| 欧美私模裸体表演在线观看| 91视频在线看| 成人午夜伦理影院| 色综合久久久久久久| 国产二区国产一区在线观看| 美国欧美日韩国产在线播放| 性做久久久久久久免费看| 亚洲黄色小视频| 亚洲乱码国产乱码精品精98午夜| 国产欧美视频在线观看| 26uuu另类欧美亚洲曰本| 51精品国自产在线| 91麻豆精品国产91| 在线成人小视频| 69久久99精品久久久久婷婷| 欧美在线不卡一区| 欧美性一区二区| 在线观看av一区二区| 欧美性色欧美a在线播放| 欧美最猛黑人xxxxx猛交| 一本色道久久综合精品竹菊| 91黄视频在线| 欧美亚洲一区二区在线| 欧美日韩午夜影院| 91精品国产综合久久久久久漫画 | 丝袜亚洲另类欧美| 日韩av电影免费观看高清完整版在线观看 | 美女性感视频久久| 精彩视频一区二区三区| 国产精品99久| 99视频一区二区| 欧美亚洲一区二区三区四区| 欧美精三区欧美精三区| 欧美一区二区三级| 久久精品人人做人人爽97| 中文成人综合网| 一区二区三区成人在线视频 | 午夜精品久久久久久久| 蜜臀va亚洲va欧美va天堂| 激情综合一区二区三区| 大桥未久av一区二区三区中文| 99精品视频免费在线观看| 精品视频一区 二区 三区| 精品少妇一区二区三区免费观看| 久久久欧美精品sm网站| 亚洲女人的天堂| 麻豆成人av在线| 成人av电影在线观看| 欧美色视频在线| 久久影院电视剧免费观看| 亚洲欧美视频在线观看视频| 图片区日韩欧美亚洲| 国产高清一区日本| 精品视频123区在线观看| 久久在线免费观看| 一区二区三区蜜桃| 国产精品综合一区二区| 91搞黄在线观看| 久久久久久久久久久久久女国产乱| 亚洲欧美另类久久久精品2019| 日本美女一区二区| 91网站在线观看视频| 日韩欧美高清在线| 一区二区三区日韩精品视频| 狠狠色综合日日| 欧美午夜精品一区| 国产精品乱码久久久久久| 日本欧美大码aⅴ在线播放| 99re热视频精品| 欧美精品一区二区三区久久久| 亚洲卡通动漫在线| 国产成人精品免费看| 日韩一卡二卡三卡四卡| 亚洲免费在线观看视频| 国产精品66部| 日韩精品在线一区二区| 一区二区欧美视频| 成人av资源网站| 国产亚洲福利社区一区| 视频一区二区三区入口| 一本一本久久a久久精品综合麻豆| www国产成人免费观看视频 深夜成人网| 一区二区三区中文字幕电影| 成人自拍视频在线| 亚洲精品一区二区三区福利| 午夜免费久久看| 欧美在线free| 亚洲情趣在线观看| 99国产精品99久久久久久| 国产清纯在线一区二区www| 久久99最新地址| 日韩一区国产二区欧美三区| 午夜久久久久久久久| 在线电影院国产精品| 亚洲黄色在线视频| 色综合天天视频在线观看| 国产精品视频一二| 风间由美一区二区av101 | 亚洲国产视频直播| 色狠狠综合天天综合综合| 国产精品久99| 成人不卡免费av| 国产精品美女久久久久av爽李琼| 国产剧情在线观看一区二区| 久久久久国产精品人| 久99久精品视频免费观看| 日韩欧美电影在线| 老司机午夜精品| 久久嫩草精品久久久久| 国产一区二区看久久| 久久久久青草大香线综合精品| 国产乱码精品一区二区三区av| xfplay精品久久| 粉嫩绯色av一区二区在线观看| 国产欧美日韩三区| heyzo一本久久综合| 亚洲色大成网站www久久九九| 93久久精品日日躁夜夜躁欧美| 亚洲色图19p| 欧美日韩另类一区| 免费在线观看成人| 久久久精品欧美丰满| 成人免费看黄yyy456| 亚洲黄色av一区| 欧美老肥妇做.爰bbww| 久久福利资源站| 欧美激情在线看| 欧洲av在线精品| 久久99精品久久久久久久久久久久| www成人在线观看| 99久久久久免费精品国产| 亚洲免费观看在线视频| 欧美日韩国产综合一区二区三区| 美女视频第一区二区三区免费观看网站 | 日韩一二三区视频| 国产成人免费av在线| 一区二区三区影院| 日韩午夜中文字幕| 盗摄精品av一区二区三区|