原因:对于在网络中传输的字符数据,不管其编码为什么,java总认为是“iso-8859-1”编码,所以从前台取到的数据如此处理:content = new String(前台数据.getBytes("iso-8859-1"),"utf-8");//utf-8可以换成你编程环境下的编码;
上代码:
//$('.content').val()是从页面取的
$.ajax({
url:'tc.action?testContent='+$('.content').val(),
type:'post',
data:'json',
})
String content=getRequest().getParameter("testContent");//testContent为前台传来的参数 try { content = new String(content.getBytes("iso-8859-1"),"utf-8"); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println("前台参数:"+content);
原文链接:https://www.f2er.com/ajax/164480.html