上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
摘要: <!DOCTYPE html><html> <head> <title>form.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" 阅读全文
posted @ 2017-04-01 11:54 贱贱的小帅哥 阅读(92) 评论(0) 推荐(0) 编辑
摘要: http://localhost:8080/day10_2/AServlet?username=xxx&password=yyy > String getScheme():获取协议,http > String getServerName():获取服务器名,localhost > String get 阅读全文
posted @ 2017-04-01 11:27 贱贱的小帅哥 阅读(709) 评论(0) 推荐(0) 编辑
摘要: 响应头:Content-Type、Refresh、Location等等 头就是一个键值对!可能会存在一个头(一个名称,一个值),也可能会存在一个头(一个名称,多个值!) > *****setHeader(String name, String value):适用于单值的响应头,例如:response 阅读全文
posted @ 2017-03-31 22:49 贱贱的小帅哥 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 4打头,都是客户端的错误 5大头,都是服务器的错误 3大头,都是中转 2打头,都是成功 response:其类型为HttpServletResponse ServletResponse-->与协议无关的类型 HttpServletResponse-->与http协议相关的类型 回忆一下http协议! 阅读全文
posted @ 2017-03-31 20:25 贱贱的小帅哥 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1. General --> Workspace --> UTF-82. General --> Editors --> Associations --> JSP --> MyEclipse JSP Editor3. 搜索jsp --> UTF-84. Java --> Installed JREs 阅读全文
posted @ 2017-03-31 20:01 贱贱的小帅哥 阅读(70) 评论(0) 推荐(0) 编辑
摘要: ServletContext application=this.getServletContext(); Integer count=(Integer) application.getAttribute("count"); if(count==null){ application.setAttrib 阅读全文
posted @ 2017-03-31 19:39 贱贱的小帅哥 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 5.1 获取真实路径(*****) 还可以使用ServletContext对象来获取Web应用下的资源,例如在hello应用的根目录下创建a.txt文件,现在想在Servlet中获取这个资源,就可以使用ServletContext来获取。 l 获取a.txt的真实路径:String realPath 阅读全文
posted @ 2017-03-31 19:18 贱贱的小帅哥 阅读(106) 评论(0) 推荐(0) 编辑
摘要: l Servlet也可以获取初始化参数,但它是局部的参数;也就是说,一个Servlet只能获取自己的初始化参数,不能获取别人的,即初始化参数只为一个Servlet准备! l 可以配置公共的初始化参数,为所有Servlet而用!这需要使用ServletContext才能使用! 还可以使用Servlet 阅读全文
posted @ 2017-03-31 19:07 贱贱的小帅哥 阅读(658) 评论(0) 推荐(0) 编辑
摘要: ServletContext是JavaWeb四大域对象之一: l PageContext; l ServletRequest; l HttpSession; l ServletContext; 所有域对象都有存取数据的功能,因为域对象内部有一个Map,用来存储数据,下面是 域对象: 域对象就是用来在 阅读全文
posted @ 2017-03-31 18:59 贱贱的小帅哥 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 一个项目只有一个ServletContext对象!可以理解成一个web应用。 ServletConfig#getServletContext(); GenericServlet#getServletContext(); HttpSession#getServletContext() ServletC 阅读全文
posted @ 2017-03-31 18:26 贱贱的小帅哥 阅读(184) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页