摘要:
首先请看如下代码: public class Test{ public static void main(String str[]) { Hashtable h =new Hashtable(); h.put(1, "String类型"); int a = (String) h.get(1); Sy 阅读全文
摘要:
装载—创建servlet实例—调用init()方法初始化—常驻内存,实行请求-响应模式—destory 1.装载 2.常驻内存 文档中servlet类中的一个方法: void service(ServletRequest req, ServletResponse res) Called by the 阅读全文