Request&Response

1.Request 请求

作用:使用Request对象来获取请求数据

1.Request获取请求数据的方法

Request&Response_第1张图片

2.通用方式获取请求参数

Request&Response_第2张图片

Request&Response_第3张图片

3.POST请求参数中文乱码解决

Request&Response_第4张图片

Request&Response_第5张图片
 4.请求转发

概念: 一种在服务器内部的资源跳转方式
Request&Response_第6张图片

         

2.Response 响应

作用:使用response对象设置响应数据

Request&Response_第7张图片

1.Response设置响应数据功能

 Request&Response_第8张图片

2.Response完成重定向

 概念:一种资源跳转方式

Request&Response_第9张图片

3.路径问题

Request&Response_第10张图片

 4.Response响应体

1.响应字符数据

Request&Response_第11张图片

 @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        //get请求
        //0.解决响应字符输出流中文乱码问题
        response.setContentType("text/html;charset=utf-8");
    
        //1.获取响应字符输出流
        PrintWriter writer = response.getWriter();
        //2.写数据
      /*  writer.write("ddd");*/
        //验证输出中文
        writer.write("你好~");
    }

2.响应字节输出流 

 Request&Response_第12张图片

你可能感兴趣的:(java,前端,html)