cookieTest2.jsp
페이지 정보
작성자 관리자 작성일 21-07-15 19:25 조회 610 댓글 0본문
<%@ 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
댓글목록 0
등록된 댓글이 없습니다.