string getrealpath(string path):返回相對路徑的真實路徑
.......//省略首頁**
if(count!=null)elseelse if(cookies[i].getname().equals("password")){
pwd=cookies[i].getvalue();
out.print("使用者名稱:"+user+「密碼」+pwd);
session與cookie均能實現資訊的儲存,但是二者的區別如下:
session是在伺服器端儲存使用者資訊,cookie是在客戶端儲存使用者資訊
session中儲存的是object型別,cookie儲存的是string型別
session物件隨會話結束而關閉,cookie可以長期儲存在客戶端
cookie通常用於儲存不重要的使用者資訊,重要的資訊使用session儲存
JSP資料互動(二)
1 建立乙個cookie物件 呼叫cookie的建構函式,使用乙個cookie名稱和值做引數,它們都是字串。cookie cookie new cookie key value 請務必牢記,名稱和值中都不能包含空格或者如下的字元 2 設定有效期 呼叫setmaxage 函式表明cookie在多長時間...
JSP資料互動
所謂內建物件就是由web容器載入的一組類的例項,不需要使用 new 關鍵字去獲取例項。request物件主要用於處理客戶端使用者提交的請求資訊。response物件與request物件相對應,它用於響應客戶請求並向客戶端返回響應資訊。response物件的sendredirect 方法用於將請求重定...
JSP資料互動
1.方法名稱 說明 void setattribute string key,object value object getattribute string key string getrealpath string path 返回相對路徑的真是路徑 2.jsp的重用內建物件 內建物件名稱 說明 o...