winfwu

导航

2013年12月16日 #

ServletContext全局变量初始化

摘要: Java部分package com.servlet;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class ServletContext extends HttpServlet { pri 阅读全文

posted @ 2013-12-16 22:22 winfwu 阅读(807) 评论(0) 推荐(0) 编辑

Sevlet局部变量初始化

摘要: //java 代码部分package com.servlet;import java.io.IOException;import java.io.PrintWriter;import java.util.Enumeration;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class InitPa 阅读全文

posted @ 2013-12-16 21:25 winfwu 阅读(432) 评论(0) 推荐(0) 编辑