用GET/POST方法向Servlet传送中文数据的问题。

简单的处理方法,需要在Servlet中用ServletRequest的setCharacterEncoding(java.lang.String)方法去做编码转换,如:
   request.setCharacterEncoding("GBK");
原文地址:https://www.cnblogs.com/johnny/p/165985.html