- 博客(3)
- 收藏
- 关注
转载 HttpSession:会话跟踪
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); //创建一个HttpSession HttpSession...
2011-11-14 21:56:00 104
转载 Servlet的生命周期
所谓servlet生命周期就是servlet被创建到销毁的过程。 1.实例化---创建一个servlet。 2.初始化---调用init()方法。 3.服务 ---接受请求,对客户端请求进行判断(get/post),调用doGet()或doPost()。 4.销毁 ---调用destroy()进行销毁操作。 转载于:https://www.cnblogs.com/sy20100...
2011-11-14 16:32:00 67
转载 Java程序:求一个数组中的最大值丶最小值和平均值。
package com.mytest; public class GetArray { //求数组最大值 public void getMaxArray(int[] intArray){ int maxArray=intArray[0]; for (int i = 0; i < intArray.length; i++) { ...
2011-11-13 14:07:00 796
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人