码迷,mamicode.com
首页 > 其他好文 > 详细

Resquest和response对象

时间:2021-02-23 14:10:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:encoding   odi   dispatch   coding   主机   个人   obj   对象   values   

Request对象:接?封装了客户请求信息,如客户请求?式、参数、客户使?的协议、以 及发出请 求的远程主机信息等,
其主要?法:
a) String getParamter(String paramName);//获取请求参数
b) String[] getParamterValues(String paramName);
c) void setCharacterEncoding(String encode);
d) void setAttribute(String name,Object value);
e) Object getAttribute(String name);
f) RequestDispatcher getRequestDispatcher(String rediret)

这里是前端或者是前面传过来的数据通过request获取(片面的个人理解)

Response对象:接?封装了服务器响应信息,主要?来输出信息到客户端浏览器,
其主要 ?法:response.setCharacterEncoding();
Response.setContentType("text/html;charset=utf-8");设置响应的内容类型
PrintWriter response.getWriter();获得响应的输出流
response.sendRedirect(redirect);重定向到指定的?址

这里是后端或者是后面的数据传到前端或是前面(片面的个人理解)

Resquest和response对象

标签:encoding   odi   dispatch   coding   主机   个人   obj   对象   values   

原文地址:https://www.cnblogs.com/yichenbusan/p/14429216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!