1、jsp页面的url这样写:
例如: str = "哈哈哈";
window.location.href = "http://127.0.0.1:8080/a/b.do?str="+ encodeURI(encodeURI(str));
2、后台这样写:
例如: @RequestMapping("/aaa")
public String aaa(String str){
String strr = URLDecoder.decode(str,"utf-8");//解码传过来的中文
}