request对象和response对象
request对象和response对象 web服务器收到客户端的HTTP请求,会针对每一次请求分别创建一个用于代表请求的request对象和代表响应的response对象。 1.要得到 客户机提交过来的数据 ,只需要找 request对象 就行了。 2、要 向客户机输出数据 ,只需要找 response对象 就行了。 一、response对象 1.1向客户端发送数据,以字节为单位(一定要先设置编码方式,再输出) [java] view plain copy String data = "你好,中国1"; OutputStream out = response.getOutputStream(); out.write(data.getBytes()); //查找本机默认编码进行编码 [java] view plain copy String data = "你好,中国2"; OutputStream out = response.getOutputStream(); out.write(data.getBytes( "UTF-8")); //以UTF-8进行编码 //告诉浏览器编码方式 response.setHeader ( "Content-Type", "text/html;charset=UTF-8" ); [java] view plain copy String