Servlet(サーブレット)リファレンス(逆引き)

Servlet(サーブレット)リファレンス
 
Web struts.wasureppoi.com
セッション情報を全て取得する:HttpSession#getAttributeNames()
スポンサード リンク

セッション情報を全て取得するには、HttpSession#getAttributeNames()を使用します。

構文
javax.servlet.http.HttpSession
 public java.util. Enumeration getAttributeNames( )
説明
getAttributeNamesメソッドは、セッションに格納されている、全てのセッションキーを取得します。

セッションに格納されている値を取得するには、getAttributeメソッドを併用します。
  
例1) 全てのセッション情報を取得します。

public class SampleServlet extends HttpServlet {

   public void doGet( HttpServletRequest request, HttpServletResponse response )
           throws ServletException,IOException {

    response.setCharacterEncoding("Windows-31J");

    PrintWriter out = response.getWriter();
    out.println("<html><body>");
    HttpSession session = request.getSession();
    session.setAttribute("KEY01","DATA01");
    session.setAttribute("KEY02","DATA02");
    session.setAttribute("KEY03","DATA03");
    Enumeration e = session.getAttributeNames();
    while(e.hasMoreElements()) {
      String key = (String)e.nextElement();
      out.println( key + ":" + session.getAttribute(key) + "<br>");
    }
    out.println("</body></html>");
   }
}


実行結果



スポンサード リンク

HttpSessionオブジェクトを取得する:HttpServletRequest#getSession()
セッション情報を取得する:HttpSession#getAttribute()
セッション情報を全て取得する:HttpSession#getAttributeNames()
セッション情報をセットする:HttpSession#setAttribute()
セッション情報を削除する:HttpSession#removeAttribute()
セッションを破棄する:HttpSession#invalidate()
セッションタイムアウトをセットする:HttpSession#setMaxInactiveInterval()
セッションタイムアウトを取得する:HttpSession#getMaxInactiveInterval()
新規セッションか確認する:HttpSession#isNew()
セッションの生成時刻を取得する:HttpSession#getCreationTime()
セッションの最終アクセス時刻を取得する:HttpSession#getLastAccessedTime()
セッションIDを取得する1:HttpSession#getId()
セッションIDを取得する2:HttpServletRequest#getRequestedSessionId()
セッションID管理はクッキーか確認する:HttpServletRequest#isRequestedSessionIdFromCookie()
セッションID管理はURLか確認する:HttpServletRequest#isRequestedSessionIdFromURL()
クッキー使用不可ブラウザにセッションIDを返す1:HttpServletResponse#encodeURL()
クッキー使用不可ブラウザにセッションIDを返す2:HttpServletResponse#encodeRedirectURL()

Servlet2へ
忘れっぽいエンジニアのJakarta Strutsリファレンス TOPへ