일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Google Map
- phonegap
- iBATIS
- Android
- 전자정부프레임워크
- rowspan
- appspresso
- 가우스
- 선택적조인
- JSON
- Eclipse
- swingx
- node.js
- jQuery
- WebLogic
- Struts
- PHP
- oracle
- MFC
- Spring
- sencha touch
- PLSQL
- MySQL
- Ajax
- tomcat
- jsr 296
- JDOM
- dock
- GPS
- ibsheet
Archives
- Today
- Total
Where The Streets Have No Name
OC4J 10G R3 한글 문제 본문
package filters;
import java.io.IOException;
import javax.servlet.*;
public class SetCharacterEncodingFilter implements Filter {
protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig = filterConfig;
this.encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null ) this.ignore = true;
else if (value.equalsIgnoreCase("true")) this.ignore = true;
else if (value.equalsIgnoreCase("yes") ) this.ignore = true;
else this.ignore = false;
}
public void destroy() {
this.encoding = null;
this.filterConfig = null;
}
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null) request.setCharacterEncoding(encoding);
}
chain.doFilter(request, response);
}
protected String selectEncoding(ServletRequest request) {
return (this.encoding);
}
}
web.xml에 추가할 내용
<web-app>
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>EUC_KR</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
import java.io.IOException;
import javax.servlet.*;
public class SetCharacterEncodingFilter implements Filter {
protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig = filterConfig;
this.encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null ) this.ignore = true;
else if (value.equalsIgnoreCase("true")) this.ignore = true;
else if (value.equalsIgnoreCase("yes") ) this.ignore = true;
else this.ignore = false;
}
public void destroy() {
this.encoding = null;
this.filterConfig = null;
}
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null) request.setCharacterEncoding(encoding);
}
chain.doFilter(request, response);
}
protected String selectEncoding(ServletRequest request) {
return (this.encoding);
}
}
web.xml에 추가할 내용
<web-app>
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>EUC_KR</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>