BorderJ's Blog
--- java FreeBsd Web3D open-sources
BlogJava
::
首頁
::
新隨筆
::
聯系
::
聚合
::
管理
::
8 隨筆 :: 1 文章 :: 40 評論 :: 0 Trackbacks
<
2006年7月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
留言簿
(4)
給我留言
查看公開留言
查看私人留言
隨筆分類
Eclipse (1)
(rss)
Java(4)
(rss)
open-sources
(rss)
PHP(1)
(rss)
Unix
(rss)
安全 (1)
(rss)
網絡 (1)
(rss)
隨筆檔案
2006年8月 (1)
2006年7月 (7)
文章分類
Struts文檔(1)
(rss)
文章檔案
2006年7月 (1)
Bloger
洪亮(Leon Hong)
車東
Java
Chinese_Java_API
javalobby
JavaWorld@TW
Java研究組織
Jspolympus
matrix
onjava
sun社區
TheServerSide(TSS)
MyBlog's List
Calendar@Google
MyBlog@blogjava
MyBlog@csdn
MyBlog@Google
(rss)
MyBlog@yahoo
open-sources
eclipse
java-source
sourceforge
灰狐
security
天天安全網
安全焦點
Unix
linuxsir
web3d
web3d
虛擬無忌
代碼查詢
codezoo
DocJar
代碼例子
代碼查詢
管理
世界經理人
搜索
最新隨筆
1.?Writely Blog 可以注冊了
2.?request.getSession() 方法
3.?php-5.1.4 和apache_2.2.2的安裝過程。
4.?在Eclipse3.2中安裝XDoclet.
5.?Struts 秘籍(CookBook) (轉)
6.?通過rome讀取feed,發現中文出現部分亂碼。。
7.?免費MySQL數據庫申請
8.? 剛剛大廈晃的利害,是不是有些地震呀 -- 北京
9.?通過js等比擴大圖片的比例
最新評論
1.?re: 免費MySQL數據庫申請
謝謝
--艷
2.?re: 免費MySQL數據庫申請
qtfqwtw
--433333
3.?re: 免費MySQL數據庫申請
ww
--ww
4.?免費MySQL數據庫申請
哈哈
--維也納之殤
5.?免費MySQL數據庫申請
酸酸的房貸首付
--維也納之殤
6.?re: 免費MySQL數據庫申請[未登錄]
啊啊啊啊
--啊啊
7.?re: 免費MySQL數據庫申請
在哪里沒看到啊哎呀哎呀
--dgasdf
8.?re: 免費MySQL數據庫申請
fv sdfgvweaftwerwerfwefrwefwe
--云海
9.?re: 通過rome讀取feed,發現中文出現部分亂碼。。
沒有解決
--dan-ni-s-wu
10.?re: 免費MySQL數據庫申請[未登錄]
69rtt67
--hhh
閱讀排行榜
1.?免費MySQL數據庫申請(9102)
2.?request.getSession() 方法(7865)
3.?在Eclipse3.2中安裝XDoclet.(3044)
4.?php-5.1.4 和apache_2.2.2的安裝過程。(2641)
5.?通過rome讀取feed,發現中文出現部分亂碼。。(2440)
6.?通過js等比擴大圖片的比例(2074)
7.? 剛剛大廈晃的利害,是不是有些地震呀 -- 北京(874)
8.?Writely Blog 可以注冊了(472)
評論排行榜
1.?免費MySQL數據庫申請(19)
2.?通過rome讀取feed,發現中文出現部分亂碼。。(7)
3.?php-5.1.4 和apache_2.2.2的安裝過程。(6)
4.?request.getSession() 方法(3)
5.?通過js等比擴大圖片的比例(3)
request.getSession() 方法
HttpRequest對象有兩種形式的getSession方法調用:
一個是getSession(),
另一個是getSession(boolean isNew)
這樣的
,前者會檢測當前時候有session存在,
如果不存在則創建一個,如果存在就返回當前的。
getSession()相當于getSession(true),
參數為true時,若存在會話則返回該會話,否則新建一個會話。
參數為false時,若存在會話則返回該會話,否則應該返回一個NULL
這是文檔:
getSession ?
? public ? HttpSession ? getSession(boolean ? create)Returns ? the ? current ? HttpSession ? associated ? with ? this ? request ? or, ? if ? if ? there ? is ? no ? current ? session ? and ? create ? is ? true, ? returns ? a ? new ? session. ? ?
? If ? create ? is ? false ? and ? the ? request ? has ? no ? valid ? HttpSession, ? this ? method ? returns ? null. ? ?
? ?
? To ? make ? sure ? the ? session ? is ? properly ? maintained, ? you ? must ? call ? this ? method ? before ? the ? response ? is ? committed. ? If ? the ? container ? is ? using ? cookies ? to ? maintain ? session ? integrity ? and ? is ? asked ? to ? create ? a ? new ? session ? when ? the ? response ? is ? committed, ? an ? IllegalStateException ? is ? thrown. ?
? ?
? Parameters: ?
? true ? - ? to ? create ? a ? new ? session ? for ? this ? request ? if ? necessary; ? false ? to ? return ? null ? if ? there's ? no ? current ? session ?
? Returns: ?
? the ? HttpSession ? associated ? with ? this ? request ? or ? null ? if ? create ? is ? false ? and ? the ? request ? has ? no ? valid ? session ?
感謝
zhouhu的提醒,現在已經修正。
Edit By: BorderJ??? 2006.8.18
posted on 2006-07-31 19:46
BorderJ
閱讀(7865)
評論(3)
編輯
收藏
所屬分類:
Java
評論
#
re: request.getSession() 方法
2006-08-18 11:45
zhouhu
getSession()相當于getSession(true),
回復
更多評論
#
re: request.getSession() 方法
2006-08-18 13:08
BorderJ
謝謝提醒,
現在已經更正。
回復
更多評論
#
re: request.getSession() 方法
2007-03-19 19:13
小神
ok
回復
更多評論
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發表評論。
網站導航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
相關文章:
request.getSession() 方法
通過rome讀取feed,發現中文出現部分亂碼。。
免費MySQL數據庫申請
通過js等比擴大圖片的比例
Powered by:
BlogJava
Copyright © BorderJ
主站蜘蛛池模板:
天柱县
|
色达县
|
六安市
|
岳普湖县
|
白玉县
|
通许县
|
东乡族自治县
|
舟山市
|
阜阳市
|
团风县
|
洛阳市
|
合山市
|
垦利县
|
杨浦区
|
昌黎县
|
红河县
|
临澧县
|
苏尼特右旗
|
航空
|
九寨沟县
|
洪洞县
|
申扎县
|
金山区
|
兴山县
|
左权县
|
湘乡市
|
迭部县
|
山西省
|
金乡县
|
望谟县
|
盈江县
|
苗栗市
|
河津市
|
友谊县
|
玉环县
|
苏尼特右旗
|
鄂托克旗
|
育儿
|
大方县
|
金溪县
|
梨树县
|