request对象是来获取请求消息,response对象是来设置响应消息
request的怕出现乱码情况直接设置
setCharacterEncoding(“utf-8”)
response怕出现 乱码 设置
response.setContentType("text/html;charset=utf-8");
请求转发
request.getRequestDispatcher("/login.jsp").forward(request, response);
重定向
response.sendRedirect(request.getContextPath() + "/success.jsp");
关于响应 .write() 与 .print()
可以打印输出文本格式的(包括html标签),可以打印对象
resp.getWriter().println("兄弟 println");
可以打印输出文本格式的(包括html标签),不可以打印对象
resp.getWriter().write("兄弟 write");
响应信息 优先级 sendError > getWriter
HttpServletResponse可利用其是枚举,方便我们看含义
代码顺序 如下
resp.sendError(HttpServletResponse.SC_BAD_GATEWAY, "兄弟你瘦了");
resp.setStatus(500);
resp.getWriter().println("兄弟 500 错误了");
最终结果 是 502 网关错误,所以 sendError 的 优先级 大于 getWriter
特殊说明: 解决问题的光鲜,藏着磕Bug的痛苦。 万物皆入轮回,谁也躲不掉! 以上文章,均是我实际操作,写出来的笔记资料,不会出现全文盗用别人文章!烦请各位,请勿直接盗用!
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有