<
%
//從提交的html表單中獲取,使用者名稱
string username
=request.getparameter(
"username
"); //
以"username", username 值/對 建立乙個cookie
cookie theusername
=new
cookie(
"username
",username);
response.addcookie(theusername); %
>
..............
<
%
cookie mycookie
=request.getcookies();
//建立乙個cookie物件陣列
for(intn=
0;n=cookie.length-1
;i++
);//
設立乙個迴圈,來訪問cookie物件陣列的每乙個元素
cookie newcookie
=mycookie[n]; if
(newcookie.getname().equals(
"username
"));
//判斷元素的值是否為username中的值
%>
C函式指標簡單用例
1 函式指標 可以指向 一類 固定形參型別和返回值型別 的函式 的指標 宣告 int fun int,int int pfun int,int pfun就是函式指標 變數 呼叫 d pfun a,b e pfun a,b 指標函式 int fun int,int int fun int,int ex...
BroadcastReciever簡單用法示例
生命週期非常短,在接受到廣播時建立,onrecieve 方法執行完後銷毀 10s內onrecieve 方法未執行完,會出現anr錯誤 broadcastreciever簡單用法示例 傳送廣播 intent intent new intent this,sendbraodcast intent 注 1...
mysql的簡單用法 mysql簡單用法
刪除使用者 drop user jack drop比delete刪除的優勢在於drop可以刪除使用者的許可權,更加徹底 更改使用者名稱 rename user jack to jacknew 使用者的都存在與user表中,更改名稱,許可權不變 更改使用者密碼 update mysql.user se...