본문 바로가기
개발/자바 Java

[JSP] 한글 파라미터 처리

by 언제나초심. 2011. 1. 4.
반응형

보내는 곳에서 처리JSP


sword = encodeURI(sword, "UTF-8");



받는 곳에서 처리



sword = java.net.URLDecoder.decode(sword, "UTF-8");



페이지에서 이용할 때에


<%@ page contentType="text/html; charset=utf-8" %>
<% request.setCharacterEncoding("utf-8"); %>
<% response.setContentType("text/html; charset=utf-8"); %>



반응형