首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

解决中文乱码有关问题

2012-11-05 
解决中文乱码问题1.页面端发出的数据做一次encodeURI(),服务器端做new String(xxx.getByte(is0-8859-1),

解决中文乱码问题

1.页面端发出的数据做一次encodeURI(),服务器端做new String(xxx.getByte("is0-8859-1"),"utf-8");

?????? encodeURI(username);

?????? new String(name.getByte("is0-8859-1"),"utf-8");

2.页面端发出的数据作两次encodeURI,服务器端做URLDecode。

?????? ?? encodeURI(encodeURI(username));

????????? String name = URLDecode.decode(name,“utf-8”);

热点排行