博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Servlet(5)—ServletRequest接口和ServletResponse接口
阅读量:5223 次
发布时间:2019-06-14

本文共 1208 字,大约阅读时间需要 4 分钟。

ServletRequest接口:

使用ServletRequest接口创建对象,用于使客户端请求信息对Servlet可用,创建的对象作为参数传递之Servlet的Service()
ServletRequest接口的方法:
getAttribute(String)
getAttributeNames()
getCharacterEncoding()
setCharacterEncoding(String)
getContentLength()
getContentType()
getInputStream()
getParameter(String)
getParameterNames()
getParameterValues(String)
getParameterMap()
getProtocol()
getScheme()
getServerName()
getServerPort()
getReader()
getRemoteAddr()
getRemoteHost()
setAttribute(String, Object)
removeAttribute(String)
getLocale()
getLocales()
isSecure()
getRequestDispatcher(String)
getRealPath(String)
getRemotePort()
getLocalName()
getLocalAddr()
getLocalPort()
getServletContext()
startAsync()
startAsync(ServletRequest, ServletResponse)
isAsyncStarted()
isAsyncSupported()
getAsyncContext()
getDispatcherType()

ServletResponse接口:

使用ServletResponse接口创建的对象用于向客户端提供响应,创建的对象作为参数传递至Servlet的service()方法,该接口中

方法如下:
getCharacterEncoding()
getContentType()
getOutputStream()
getWriter()
setCharacterEncoding(String)
setContentLength(int)
setContentType(String)
setBufferSize(int)
getBufferSize()
flushBuffer()
resetBuffer()
isCommitted()
reset()
setLocale(Locale)
getLocale()

转载于:https://www.cnblogs.com/tengpengfei/p/10453990.html

你可能感兴趣的文章
知识不是来炫耀的,而是来分享的-----现在的人们却…似乎开始变味了…
查看>>
CSS背景颜色、背景图片、平铺、定位、固定
查看>>
口胡:[HNOI2011]数学作业
查看>>
我的第一个python web开发框架(29)——定制ORM(五)
查看>>
中国剩余定理
查看>>
基础笔记一
查看>>
uva 10137 The trip
查看>>
Count Numbers
查看>>
编写高质量代码改善C#程序的157个建议——建议110:用类来代替enum
查看>>
网卡bond技术
查看>>
UITabbarController的UITabbarItem(例:"我的")点击时,判断是否登录
查看>>
UNIX基础知识之输入和输出
查看>>
【洛谷 P1666】 前缀单词 (Trie)
查看>>
数据库锁机制及乐观锁,悲观锁的并发控制
查看>>
图像处理中双线性插值
查看>>
RobHess的SIFT代码解析之RANSAC
查看>>
03 线程池
查看>>
201771010125王瑜《面向对象程序设计(Java)》第十三周学习总结
查看>>
手机验证码执行流程
查看>>
python 基础 ----- 变量
查看>>