cookieTest2.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%
String name="";
String value="";
//쿠키가 생성되었는지 확인여부
String cookie = request.getHeader("Cookie");
if(cookie!=null){
Cookie cookies[]=request.getCookies();
for(int i=0;i<cookies.length;i++){
if(cookies[i].getName().equals("name")){
name=cookies[i].getName();
value=cookies[i].getValue();
}
}
}
%>
<html>
<head>
<title>Cookie Test</title>
</head>
<body>
<h2>쿠키 이름 = <%=name %></h2>
<h2>쿠키 값 = <%=value %></h2>
</body>
</html>
추천0
- 이전글cookieTest1.jsp 21.07.15
- 다음글● 세션 (Session) 객체 21.07.15
댓글목록
등록된 댓글이 없습니다.