session.setAttribute()是ServletContext接口中的一個方法,用于在會話對象中設置屬性。
該方法的使用格式為: session.setAttribute(String name, Object value)
參數name是屬性的名稱,value是屬性的值。
使用session.setAttribute()方法可以將一個屬性添加到會話對象中。可以使用屬性的名稱在會話中檢索和更新該屬性的值。
例如,以下代碼將一個名為"username"的屬性添加到會話對象中,并將其值設置為"john": session.setAttribute(“username”, “john”)
要檢索會話對象中的屬性值,可以使用session.getAttribute()方法。
例如,以下代碼獲取名為"username"的屬性的值: String username = (String) session.getAttribute(“username”)