쿠키 읽는 방법
쿠키 객체를 얻어온다.
쿠키 객체에 설정된 값을 알아낸다.
쿠키 객체 얻어오기
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
반응형
'JSP, Servlet > JSP, Servlet 기초' 카테고리의 다른 글
[JSP/Servlet] session 기초 (0) | 2020.08.11 |
---|---|
[JSP/Servlet] Cookie 지우기 (0) | 2020.08.11 |
[JSP/Servlet] cookie 기초 (0) | 2020.08.11 |
[JSP/Servlet] 액션태그 기초(feat. jsp:include) (0) | 2020.08.11 |
[JSP/Servlet] 액션태그 기초(feat. jsp:param), 사용자별 로그인 페이지 다르게하기 (0) | 2020.08.11 |