BorderJ's Blog
--- java FreeBsd Web3D open-sources
BlogJava
::
首頁
::
新隨筆
::
聯(lián)系
::
聚合
::
管理
::
8 隨筆 :: 1 文章 :: 40 評論 :: 0 Trackbacks
<
2007年3月
>
日
一
二
三
四
五
六
25
26
27
28
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
6
7
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
留言簿
(4)
給我留言
查看公開留言
查看私人留言
隨筆分類
Eclipse (1)
(rss)
Java(4)
(rss)
open-sources
(rss)
PHP(1)
(rss)
Unix
(rss)
安全 (1)
(rss)
網(wǎng)絡 (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社區(qū)
TheServerSide(TSS)
MyBlog's List
Calendar@Google
MyBlog@blogjava
MyBlog@csdn
MyBlog@Google
(rss)
MyBlog@yahoo
open-sources
eclipse
java-source
sourceforge
灰狐
security
天天安全網(wǎng)
安全焦點
Unix
linuxsir
web3d
web3d
虛擬無忌
代碼查詢
codezoo
DocJar
代碼例子
代碼查詢
管理
世界經(jīng)理人
搜索
最新隨筆
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,發(fā)現(xiàn)中文出現(xiàn)部分亂碼。。
7.?免費MySQL數(shù)據(jù)庫申請
8.? 剛剛大廈晃的利害,是不是有些地震呀 -- 北京
9.?通過js等比擴大圖片的比例
最新評論
1.?re: 免費MySQL數(shù)據(jù)庫申請
謝謝
--艷
2.?re: 免費MySQL數(shù)據(jù)庫申請
qtfqwtw
--433333
3.?re: 免費MySQL數(shù)據(jù)庫申請
ww
--ww
4.?免費MySQL數(shù)據(jù)庫申請
哈哈
--維也納之殤
5.?免費MySQL數(shù)據(jù)庫申請
酸酸的房貸首付
--維也納之殤
6.?re: 免費MySQL數(shù)據(jù)庫申請[未登錄]
啊啊啊啊
--啊啊
7.?re: 免費MySQL數(shù)據(jù)庫申請
在哪里沒看到啊哎呀哎呀
--dgasdf
8.?re: 免費MySQL數(shù)據(jù)庫申請
fv sdfgvweaftwerwerfwefrwefwe
--云海
9.?re: 通過rome讀取feed,發(fā)現(xiàn)中文出現(xiàn)部分亂碼。。
沒有解決
--dan-ni-s-wu
10.?re: 免費MySQL數(shù)據(jù)庫申請[未登錄]
69rtt67
--hhh
閱讀排行榜
1.?免費MySQL數(shù)據(jù)庫申請(9102)
2.?request.getSession() 方法(7865)
3.?在Eclipse3.2中安裝XDoclet.(3044)
4.?php-5.1.4 和apache_2.2.2的安裝過程。(2641)
5.?通過rome讀取feed,發(fā)現(xiàn)中文出現(xiàn)部分亂碼。。(2441)
6.?通過js等比擴大圖片的比例(2075)
7.? 剛剛大廈晃的利害,是不是有些地震呀 -- 北京(875)
8.?Writely Blog 可以注冊了(472)
評論排行榜
1.?免費MySQL數(shù)據(jù)庫申請(19)
2.?通過rome讀取feed,發(fā)現(xiàn)中文出現(xiàn)部分亂碼。。(7)
3.?php-5.1.4 和apache_2.2.2的安裝過程。(6)
4.?request.getSession() 方法(3)
5.?通過js等比擴大圖片的比例(3)
request.getSession() 方法
HttpRequest對象有兩種形式的getSession方法調(diào)用:
一個是getSession(),
另一個是getSession(boolean isNew)
這樣的
,前者會檢測當前時候有session存在,
如果不存在則創(chuàng)建一個,如果存在就返回當前的。
getSession()相當于getSession(true),
參數(shù)為true時,若存在會話則返回該會話,否則新建一個會話。
參數(shù)為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的提醒,現(xiàn)在已經(jīng)修正。
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
謝謝提醒,
現(xiàn)在已經(jīng)更正。
回復
更多評論
#
re: request.getSession() 方法
2007-03-19 19:13
小神
ok
回復
更多評論
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發(fā)表評論。
網(wǎng)站導航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
相關文章:
request.getSession() 方法
通過rome讀取feed,發(fā)現(xiàn)中文出現(xiàn)部分亂碼。。
免費MySQL數(shù)據(jù)庫申請
通過js等比擴大圖片的比例
Powered by:
BlogJava
Copyright © BorderJ
主站蜘蛛池模板:
南丰县
|
富川
|
伊川县
|
开原市
|
道孚县
|
襄汾县
|
磐石市
|
于都县
|
涟水县
|
望都县
|
金塔县
|
台山市
|
安庆市
|
缙云县
|
无为县
|
太保市
|
武平县
|
疏附县
|
奉新县
|
育儿
|
建德市
|
海伦市
|
蓬安县
|
稷山县
|
大渡口区
|
黄骅市
|
三门县
|
芦溪县
|
资兴市
|
合江县
|
东兰县
|
台南市
|
青河县
|
鹤庆县
|
武隆县
|
如东县
|
历史
|
麻城市
|
高唐县
|
建阳市
|
柏乡县
|