<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 23,comments - 15,trackbacks - 0

    對于一個帳號在同一時間只能一個人登錄,可以通過下面的方法實現:

    1 .在用戶登錄時,把用戶添加到一個ArrayList

    2 .再次登錄時查看ArrayList中有沒有該用戶,如果ArrayList中已經存在該用戶,則阻止其登錄

    3 .當用戶退出時,需要從該ArrayList中刪除該用戶,這又分為三種情況

    使用注銷按鈕正常退出

    點擊瀏覽器關閉按鈕或者用Alt+F4退出,可以用javascript捕捉該頁面關閉事件,

    執行一段java方法刪除ArrayList中的用戶

    非正常退出,比如客戶端系統崩潰或突然死機,可以采用隔一段時間session沒活動就刪除該session所對應的用戶來解決,這樣用戶需要等待一段時間之后就可以正常登錄。

     

    LoginAction中定義:

    // 用來在服務器端存儲登錄的所有帳號

    public static List logonAccounts;

     

    login() 登錄方法中:

    // 設置session不活動時間為30

    request.getSession().setMaxInactiveInterval(60*30);

    if(logonAccounts==null){

        logonAccounts = new ArrayList();

    }

    // 查看ArrayList中有沒有該用戶

    for (int i = 0; i < logonAccounts.size(); i++) {

        Account existAccount = (Account)logonAccounts.get(i);

        if(account.getAccountId().equals(existAccount.getAccountId())){

            return "denied";

        }

    }

    // 在用戶登錄時,把sessionId添加到一個account對象中

    // 在后面 需要根據此sessionId刪除相應用戶

    account.setSessionId(request.getSession().getId());

    // 該用戶保存到ArrayList靜態類變量中

    logonAccounts.add(account);

    return "login";

     

    使用注銷按鈕正常退出

    logout() 退出方法中:

    if(logonAccounts==null){

        logonAccounts = new ArrayList();

    }

    // 刪除ArrayList中的用戶  ⑴

    for (int i = 0; i < logonAccounts.size(); i++) {

        Account existAccount = (Account)logonAccounts.get(i);

        if(account.getAccountId().equals(existAccount.getAccountId())){

            logonAccounts.remove(account);

        }

    }

     

    點擊瀏覽器關閉按鈕或者用Alt+F4退出:

    在后臺彈出一個窗口,在彈出窗口中刪除ArrayList中的用戶

    function window.onbeforeunload(){

    // 是否通過關閉按鈕或者用Alt+F4退出

    // 如果為刷新觸發onbeforeunload事件,下面if語句不執行

        if (event.clientX>document.body.clientWidth && event.clientY<0||event.altKey){

            window.open('accountUnbound.jsp','',

                    'height=0,width=0,top=10000,left=10000')

        }

    }

     

     

    accountUnbound.jsp : 彈出窗口中刪除ArrayList中的用戶

    <%

        Account account = (Account) request.getSession().getAttribute("account");

        if(account != null){

            if(LoginAction.logonAccounts==null){

                LoginAction.logonAccounts = new ArrayList();

            }

            // 刪除ArrayList中的用戶——下面代碼和上面的 處一樣

            for (int i = 0; i < logonAccounts.size(); i++) {

                Account existAccount = (Account)logonAccounts.get(i);

                if(account.getAccountId().equals(existAccount.getAccountId())){

                    logonAccounts.remove(account);

                }

            }

        }

    %>

    為了保證上面代碼可以執行完畢,3秒后關閉此彈出窗口(也位于accountUnbound.jsp中)

    <script>

    setTimeout("closeWindow();",3000);

    function closeWindow(){

        window.close();

    }

    </script>

     

    使LoginAction 實現implements HttpSessionListener,并實現sessionCreatedsessionDestroyed方法,在sessionDestroyed中刪除ArrayList中的用戶(用戶超過30分鐘不活動則執行此方法)

    public void sessionDestroyed(HttpSessionEvent event) {

       // 取得不活動時的sessionId,并根據其刪除相應logonAccounts中的用戶

       String sessionId = event.getSession().getId();

       for (int i = 0; i < logonAccounts.size(); i++) {

           Account existAccount = (Account)logonAccounts.get(i);

           if(account.getSessionId().equals(existAccount.getSessionId())){

               logonAccounts.remove(account);

           }

       }

    }

     

    注:

    對于上面的,由于彈出窗口很容易被防火墻或者安全軟件阻攔,造成無法彈出窗口,從而短時間不能登錄,這種情況可以用AJAX來代替彈出窗口,同樣在后臺執行刪除用戶的那段代碼,卻不會受到防火墻限制:

    <script>

        // <![CDATA[

        var http_request = false;

        function makeRequest(url) {

            http_request = false;

            if (window.XMLHttpRequest) { // Mozilla, Safari,...

                http_request = new XMLHttpRequest();

                if (http_request.overrideMimeType) {

                    http_request.overrideMimeType('text/xml');

                }

            } else if (window.ActiveXObject) { // IE

                try {

                    http_request = new ActiveXObject("Msxml2.XMLHTTP");

                } catch (e) {

                    try {

                        http_request = new ActiveXObject("Microsoft.XMLHTTP");

                    } catch (e) {

                    }

                }

            }

            if (!http_request) {

                alert('Giving up :( Cannot create an XMLHTTP instance');

                return false;

            }

            http_request.onreadystatechange = alertContents;

            http_request.open('GET', url, true);

            http_request.send(null);

     

        }

        function alertContents() {

            if (http_request.readyState == 4) {

                if (http_request.status == 200) {

                    window.close();

                } else {

                    alert('There was a problem with the request.');

                }

            }

     

        }

        function window. onbeforeunload() {

            makeRequest ('accountUnbound.jsp');

        }

        //]]>

    </script>

     

    對于上面的這段ajax代碼,在網上有很多詳細的解釋,把它加到onbeforeunload()瀏覽器關閉事件中,在后臺執行代碼的效果很好,不必擔心彈出窗口有時候會無效的問題

     

    使用這段代碼后,上面accountUnbound.jsp中的那段關閉彈出窗口window.close();js代碼就不需要了。

    posted on 2007-06-19 13:12 飛翔的心 閱讀(188) 評論(0)  編輯  收藏 所屬分類: Java

    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 亚洲日韩VA无码中文字幕| 黄色网址免费观看| 亚洲国产成人无码av在线播放| 免费无码AV片在线观看软件| 亚洲AV无码国产精品永久一区| 亚洲一区二区三区自拍公司| 成人免费视频试看120秒| 日本在线免费观看| 日韩a毛片免费观看| 亚洲人成在线精品| 亚洲国产美国国产综合一区二区| 四虎成人精品在永久免费| 最近2019年免费中文字幕高清| jyzzjyzz国产免费观看| 亚洲AⅤ男人的天堂在线观看| 亚洲小视频在线播放| 亚洲av日韩av激情亚洲| 久久精品国产亚洲一区二区| 亚洲人成无码网站久久99热国产| 日韩在线a视频免费播放| 国产福利在线免费| 免费精品国产日韩热久久| 国产成人免费在线| 18女人毛片水真多免费| h片在线免费观看| 久久久久久久免费视频| 永久免费av无码网站韩国毛片| 久久久久国色AV免费观看性色| 国产黄色免费网站| 午夜毛片不卡高清免费| 免费人成在线观看网站视频 | 亚洲黄片手机免费观看| 国产偷国产偷亚洲高清日韩| 亚洲精品乱码久久久久久按摩 | h视频免费高清在线观看| 在线毛片片免费观看| 51精品视频免费国产专区| 成人免费毛片视频| 国产亚洲精品无码专区| 亚洲成a人片在线观看中文!!!| 亚洲精品天堂无码中文字幕|