web请求 转发 还有请求乱码问题 还有封装问题
HttpServletRequest就是servlet中doget或dopost方法的其中一个参数类型,表示的是浏览器发出的请求对象;这个对象,是由服务器创建,并传递给servlet,让程序员直接使用的; 常用操作路径的方法有
- getContextPath()获取虚拟目录名称
- getRemoteAddr()获取访问者的IP地址
- getRequestURL()获取同意i资源标识符
常用操作参数相关的方法 getParameter()根据名称获取相关数据 getParameterMap()获取所有参数的键值对 数据的封装 运用BeanUtils的jar包使用步骤 将两个jar包复制到WEB-INF下的lib目录下; 添加到本地支持; 写代码的时候,直接使用工具类BeanUtils的静态方法,populate(对象,map集合);
请求参数乱码的问题
请求参数乱码
产生的原因:
页面上的编码格式和服务器的编码格式不一致导致的;
解决post请求的参数乱码办法:(get请求在tomcat8后自动解决了)
通过**request.setCharacterEncoding(“utf-8”);**告诉服务器,我们取数据的时候,帮我们使用utf-8的编码进行处理;
请求转发
客户端的一次请求到达后发现需要借助其他的servlet来实现功能 与请求转发案例相关的代码 客户端请求在demo2中但是demo2中转发到demo3中执行deno3中的数据
@WebServlet("/Demo2")
public class Demo2 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//设置共享数据
req.setAttribute("encoding","gbk");
//获取请求调度对象
RequestDispatcher rd = req.getRequestDispatcher("/Demo3");
//实现转发功能
rd.forward(req,resp);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doGet(req,resp);
}
}
@WebServlet("/Demo3")
public class Demo3 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//获取共享数据,从request域对象中获取曾经利用setattribute方法存进去的数据
Object encoding = req.getAttribute("encoding");
//getparameter从浏览器中获取数据,所以取不到数据
String encoding1 = req.getParameter("encoding");
System.out.println("s="+encoding1);
System.out.println("encoding="+encoding);
System.out.println("servletDemo3执行了。。。。。");
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doGet(req,resp);
}
}
封装有手动封装,映射封装,还这种用资源库封装 手动封装和映射封装就不写了 用的不多 封装的具体代码
Student类
public class Student {
private String usename;
private String password;
private String [] aihao;
public Student() {
}
public Student(String usename, String password, String[] aihao) {
this.usename = usename;
this.password = password;
this.aihao = aihao;
}
public String getUsename() {
return usename;
}
public void setUsename(String usename) {
this.usename = usename;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String[] getAihao() {
return aihao;
}
public void setAihao(String[] aihao) {
this.aihao = aihao;
}
@Override
public String toString() {
return "Student{" +
"usename='" + usename + '\'' +
", password='" + password + '\'' +
", aihao=" + Arrays.toString(aihao) +
'}';
}
}
```# #` 运用jar包的方法疯涨student对象
@WebServlet("/Demo1")
public class Demo1 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Map<String, String[]> parameterMap = req.getParameterMap();
Student student=new Student();
try {
BeanUtils.populate(student,parameterMap);
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
System.out.println(student);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doGet(req,resp);
}
}
`
## 创建html页面其中所规定的input必须在student类中有创建的私有化成员变量小于等于student中的成员变量要不然会报错
数据 姓名:
年龄:
爱好:听音乐 玩游戏
<button type="submit">保存</button>
```
|