码迷,mamicode.com
首页 > 编程语言 > 详细

springMvc get参数转码

时间:2015-09-15 16:45:43      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

//字符串转参数转码
import java.beans.PropertyEditorSupport;
import java.io.UnsupportedEncodingException;

import org.apache.commons.lang.StringUtils;

public class CustomStringEditor extends PropertyEditorSupport{
	
	private String charset;

	public CustomStringEditor() {}
	
	public CustomStringEditor(String charset) {
		this.charset = charset;
	}
	
	@Override
	public void setAsText(String text) throws IllegalArgumentException {
		try {
			if (StringUtils.isNotBlank(text)) {
				text = ConverStr.changeCharset(text,ConverStr.ISO_8859_1, charset);
			}
			setValue(text);
			return;
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		}
	}
	
	public void setCharset(String charset) {
		this.charset = charset;
	}
	
}

//controller应用
@InitBinder
public void initBinder(WebDataBinder binder, HttpServletRequest request) {
    if ("GET".equalsIgnoreCase(request.getMethod())) {
        binder.registerCustomEditor(String.class, new CustomStringEditor(ConverStr.UTF_8));
    }
}


springMvc get参数转码

标签:

原文地址:http://my.oschina.net/haochenhh/blog/506344

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!