request和response
Posted zrmj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了request和response相关的知识,希望对你有一定的参考价值。
处理乱码方式:
get请求:获取字符串之后使用new String(name.getBytes("iso-8859-1"),"utf-8)进行重新编码,另外一种方法是request.setCharactorEncoding("utf-8")同时还要设置tomcat的配置文件,第三种:
在server.xml\\中添加URIEncoding=“utf-8”
post请求:request.setCharactorEncoding("utf-8")
设置响应编码格式:response.setCaractorEncoding("gbk"):
请求转发:
不同servlet之间的数据共享:
重定向:
以上是关于request和response的主要内容,如果未能解决你的问题,请参考以下文章