728x90

첫번째 방법 (Get 방식으로 전달할때)


톰캣 server.xml 안에


    <Connector port="8080" protocol="HTTP/1.1"

               connectionTimeout="20000"

               redirectPort="8443" />


에다가


   useBodyEncodingForURI="true" URIEncoding="EUC-KR" 를 추가


결론은


    <Connector port="8080" protocol="HTTP/1.1"

               connectionTimeout="20000"

               redirectPort="8443" useBodyEncodingForURI="true" URIEncoding="EUC-KR" />







두번째방법 (Post 방식일때)


Servlet 받는곳 doGet 이나 doPost 에 


response.setContentType("text/html; charset=KSC5601");

request.setCharacterEncoding("KSC5601"); 를 넣어주고





if(request.getMethod().equalsIgnoreCase("get"))

{

name=myclasses.StringUtil.toHangul(name);

email=myclasses.StringUtil.toHangul(email);

}


로 연결 시켜줌 java파일을 연결


StringUtil.java





Posted by 앗뜨거
,