JSP:请求数据和请求本身的一些信息
jsp 隐式对象 赵振江
隐式对象
描述
编写一个JSP登录页面,可输入用户名和密码,提交请求到另一个JSP页面,该JSP页面获取请求的相关数据并显示出来。请求的相关数据包括用户输入的请求数据和请求本身的一些信息(比如请求使用的协议getProtocol() 、请求的URI request.getServletPath() 、请...
分类:
Web程序 时间:
2015-04-26 10:55:05
阅读次数:
137
Filter控制器jsp页面代码 user: pass: 注册解决乱码的问题:POST 请求方法FilterHttpServletRequestreq=(HttpServletRequest)request;StringServerpath=req.getServletPath();if(Se...
分类:
其他好文 时间:
2014-12-11 22:08:28
阅读次数:
133
getServletPath
java.lang.String getServletPath()
Returns the part of this request's URL that calls the servlet. This path starts with a "/" character and includes either the servlet name or a path t...
分类:
其他好文 时间:
2014-09-27 18:00:10
阅读次数:
403
http://localhost:8080/news/main/list.jsp
则执行下面向行代码后打印出如下结果:
1、 System.out.println(request.getContextPath());
打印结果:/news
2、System.out.println(request.getServletPath());
打印结果:/main/list.jsp
...
分类:
其他好文 时间:
2014-09-09 23:07:59
阅读次数:
593
request.getServletContext().getRealPath("/") 获取项目所在服务器的全路径,如:D:\Program Files\apache-tomcat-7.0.25\webapps\TestSytem
request.getServletPath() 获取客户端请求的路径名,如:/object/delObject
request.getServ...
分类:
编程语言 时间:
2014-08-07 15:57:00
阅读次数:
346
假定web application 名称为news,你在浏览器中输入请求路径:
http://localhost:8080/news/main/list.jsp 则执行下面向行代码后打印出如下结果:1、
System.out.println(request.getContextPath()); 打印...
分类:
其他好文 时间:
2014-05-24 08:05:54
阅读次数:
264