본문 바로가기
프로그래밍/etc..

쿠키에 값 저장하거나 꺼낼 때 한글 처리

by 카라미 2015. 4. 22.

//쿠키 저장할때. 
Cookie cookie = new Cookie("login", URLEncoder.encode(id,"UTF-8"));
cookie.setPath("/");
cookie.setMaxAge(-1);
resp.addCookie(cookie);     

resp.sendRedirect("indexServlet"); 


//쿠키에서 값 꺼낼때.
for (Cookie cookie : cookies) {
 if("login".equals(cookie.getName())){
  id = URLDecoder.decode(cookie.getValue(),"UTF-8");
 }
}
  
  

'프로그래밍 > etc..' 카테고리의 다른 글

css 레이아웃  (0) 2015.11.11
pom.xml  (0) 2015.10.29
MVC Exam  (0) 2015.10.22
json 라이브러리  (0) 2015.10.21
web - <load-on-startup>  (0) 2015.07.29