Session 使用

star77266989發表於2015-09-10

Session是在伺服器端建立的:

HttpSession session = request.getSession();

 

設定session裡面的值:

session.setAttribute("code", "值");

 

取得session裡面的值;

String code =  session.getAttribute("code");

 

判斷是否已經創

        if (session.isNew()) {

             response.getWriter().print("session建立成功,session的id是:"+sessionId);

         }else {

             response.getWriter().print("伺服器已經存在該session了,session的id是:"+sessionId);

         }

 

相關文章