ssm框架用myeclpe传到数据库为什么是乱码

ssm框架用myeclpe传到数据库为什么是乱码,第1张

$(function(){

$.ajax({

url : 请求的路径(action),

type : "post", //以Post方式发送请求

data : 请求时发送的数据,

dataType : json, //返回的数据类型

async : true, //本次请求是否为异步请求

success : function(返回的数据变量){

//请求成功,执行的 *** 作

},

error : function(){

//请求失败,执行的 *** 作

}

})

})

/*

1、action和你普通请求配置一样

2、请求到后台后,该怎么处理也和普通请求一样,dao,mapper什么的都一样

3、你返回的数据使用JSONObject类来包装,最后返回的时候把这个对象toString(),依赖的jar包在struts里面提供了

*/

后来发现,查询比较多,这样改不太现实,而且有时候有的浏览器可以转过来,有的浏览器不行。

后来百度发现可以修改tomcat的配置文件tomcat/conf下的server.xml。加上红色部分。

<Connector port="8080" protocol="HTTP/1.1"

connectionTimeout="20000"

redirectPort="8443" URIEncoding="UTF-8"/>

<!-- A "Connector" using the shared thread pool-->

既然项目设置的是utf-8,编码就全部设置为utf-8啊,jsp页面的也要设置为utf-8编码。

这样试试:

equest.setCharacterEncoding("utf-8")

String strChineseString = request.getParameter("addr")

System.out.println("strChineseString :"+strChineseString )

strChineseString =new String(strChineseString.getBytes("iso-8859-1"),"utf-8")

System.out.println("strChineseString :"+strChineseString )


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9900259.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存