티스토리 뷰
1. 서버->클라이언트 (HttpServletResponse setContentType)
response.setContentType("text/html;charset=utf-8");
2. 클라이언트->서버 (HttpServletRequest setCharacterEncoding)
1)post 방식
request.setCharacterEncoding("utf-8");
2)get 방식
server.xml 에서
Connector port 8080의 URIEncoding="UTF-8" 로 설정
<Connector connectionTimeout="20000" port="9090" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8"/>
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
URIEncoding="UTF-8" />
-->
'Jsp&Servlet' 카테고리의 다른 글
Connection, Statement, ResultSet 의 close 문제 (0) | 2017.01.23 |
---|---|
ServletContext, HttpSession, HttpServletRequest 차이점 (0) | 2017.01.23 |
get방식과 post 방식에서 쿼리 문자열 가져오기 (0) | 2017.01.23 |
쿼리문자열(Query String)에서 값 추출하기 - getParameter, getParameterValues (0) | 2017.01.23 |
Request 정보와 Response 정보 (0) | 2017.01.20 |
댓글