Notice
Recent Posts
Recent Comments
Link
목록filter (1)
이야기앱 세상
post 방식으로 데이터 전송시 한글 깨짐 해결
1. jsp 페이지에서 인코딩 request.setCharacterEncoding("euc-kr"); 2. filter 이용법 2-1 Filter class 작성 ------------------------ package en.filter;import java.io.IOException; import javax.servlet.*; public class EncodingUtil implements Filter { private String encoding = null; protected FilterConfig filterConfig = null; public void destroy() { this.encoding = null; this.filterConfig = null; } // web.xml에서 전달된..
IT/JSP
2016. 3. 22. 11:16