request&response笔记
Posted Anglus Wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了request&response笔记相关的知识,希望对你有一定的参考价值。
一、HttpServletResponse
1、代表了一个响应
2、应用:
2.1输出中文
字节流输出中文
//拿到输出字节流对象 ServletOutputStream oos = response.getOutputStream(); // 输出中文 // byte[] bs = "中国,你好".getBytes(); // oos.write(bs); // 此时浏览器会出现乱码
以上是关于request&response笔记的主要内容,如果未能解决你的问题,请参考以下文章