解决中文乱码问题
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”);