SerletResponse接口:
getOutputStream:返回可以向客户端发送二进制数据的输出流对象ServletOutputStream
getWriter:返回可以向客户端发送字符数据的PrintWriter对象
getCharacterEncoding:返回Servlet发送的响应数据的字符编码。
getContentType:返回Servlet发送的响应数据的MIME类型。
setCharacterEncoding:设置Servlet发送的响应数据的字符编码
setContentType:设置Servlet发送的响应数据的MIME类型。