一、HttpServletResponse
1、代表了一个响应
2、应用:
2.1输出中文
字节流输出中文
//拿到输出字节流对象 ServletOutputStream oos = response.getOutputStream(); // 输出中文 // byte[] bs = "中国,你好".getBytes(); // oos.write(bs); // 此时浏览器会出现乱码
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/6036.html