1. 程式人生 > >簡述HttpSession的作用、使用方法,可用代碼說明

簡述HttpSession的作用、使用方法,可用代碼說明

說明 t對象 得到 對象 set 一個 可用 attribute 跟蹤

HttpSession中可以跟蹤並儲存用戶信息,把值設置到屬性中,有2個方法:setAttribute(),getAttrribute();

例如:在一個方法中用session.setAttribute(“student”,student);在session中設置一個屬性名為student,值為一個名為student的對象。而後可在同一session範圍內用getAttribute(“student”)取出該屬性,得到student對象。

簡述HttpSession的作用、使用方法,可用代碼說明