Servlet --Response
(HttpSesponseServlet对象是服务器的响应对象,这个对象中封装了向客户端发送数据,发送响应头,发送响应状态码的方法)
response.setHeader("x1","x2");
response.setHeader("x1","x22");
设置响应头,根据key-yalue键值对的方式来设置 ,如果存在相同的key,不会把value的值覆盖
response.addHeader("hello","word");
response.addHeader("hello","word");
设置响应状态码
response.sendError(404,"not found");
服务端返回的对象数据要按照一定的格式要求进行渲染,只有是HTML格式才会识别标签
response.setContentType("text/java"); response.getWriter().write("<b>java is easy</b>");