You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
5 months ago
|
package util;
|
||
|
|
||
|
import javax.servlet.*;
|
||
|
import javax.servlet.http.*;
|
||
|
|
||
|
import java.io.*;
|
||
|
import java.util.Iterator;
|
||
|
|
||
|
public class SetChar extends HttpServlet implements Filter {
|
||
|
private FilterConfig filterConfig;
|
||
|
|
||
|
// Handle the passed-in FilterConfig
|
||
|
public void init(FilterConfig filterConfig) throws ServletException {
|
||
|
this.filterConfig = filterConfig;
|
||
|
}
|
||
|
|
||
|
// Process the request/response pair
|
||
|
public void doFilter(ServletRequest request, ServletResponse response,
|
||
|
FilterChain filterChain) {
|
||
|
try {
|
||
|
//request.setCharacterEncoding("gb2312");
|
||
|
|
||
|
HttpServletRequest req = (HttpServletRequest) request;
|
||
|
|
||
|
if (req.getMethod().equalsIgnoreCase("get")) {
|
||
|
this.encoding(req);
|
||
|
}
|
||
|
|
||
|
response.setCharacterEncoding("gb2312");
|
||
|
request.setCharacterEncoding("gb2312");
|
||
|
filterChain.doFilter(request, response);
|
||
|
} catch (ServletException sx) {
|
||
|
filterConfig.getServletContext().log(sx.getMessage());
|
||
|
} catch (IOException iox) {
|
||
|
filterConfig.getServletContext().log(iox.getMessage());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void encoding(HttpServletRequest request) {
|
||
|
Iterator iter = request.getParameterMap().values().iterator();
|
||
|
while (iter.hasNext()) {
|
||
|
String[] parames = (String[]) iter.next();
|
||
|
for (int i = 0; i < parames.length; i++) {
|
||
|
try {
|
||
|
parames[i] = new String(parames[i].getBytes("iso8859-1"),
|
||
|
"gb2312");
|
||
|
} catch (Exception e) {
|
||
|
e.printStackTrace();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Clean up resources
|
||
|
public void destroy() {
|
||
|
}
|
||
|
}
|