본문 바로가기

JSP, Servlet/JSP, Servlet 기초

[JSP/Servlet] Cookie 값 얻어오기

쿠키 읽는 방법
 쿠키 객체를 얻어온다.
 쿠키 객체에 설정된 값을 알아낸다.

 쿠키 객체 얻어오기
 request 객체의 getCookies() 메소드를 사용하면 클라이언트에 설정된 모든 쿠키 객체들을 얻어올 수 있다.

더보기

Cookie[] cookies = request.getCookies();

 

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h3>클라이언트에서 얻어온 Cookie 정보</h3>
	<%
		Cookie[] cookies = request.getCookies();
	for(Cookie c :cookies){
		out.println(c.getName()+" : "+c.getValue()+"<br>");
		
	}
	%>
</body>
</html>

 

 

 

728x90
반응형