编码之request编码-url编码【必须提前指定一种字符编码】
----------------------------------------------------------------
POST请求默认就使用URL编码!tomcat服务器能自动识别URL编码,然后自动使用URL解码!
【客户端post方式中自动url编码,服务器自动url解码】
POST方式中的表单的编码类型为,
Content-Type: application/x-www-form-urlencoded
urlencoded 把中文转换成%后面跟随两位的16进制。
Post---表单------ url编码 -----一个字转换为%XX --- 发送到服务器----- 自动使用url解码---。
-------------------------------------------------------------------------------------------
基于字符编码的URL编码解码:
URL编码:String username = URLEncoder.encode(username, "