「Java入門」HttpSession#getAttribute()でセッション情報を取得するサンプル

サンプルコード1
CustomerData custm = (CustomerData) request.getSession().getAttribute(“CUSTOMER_DATA");
if((“taro").equals(custm.getCustomerId()))
{
//処理コード
}

サンプルコード2
PrintWriter out = response.getWriter();
HttpSession ses = request.getSession();
ses.setAttribute(“CUSTOMER_DATA","taro");
out.println(“データ:" + ses.getAttribute(“CUSTOMER_DATA"));

Software

Posted by arkgame