JSP - request - 1】的更多相关文章

从Request对象中可以获取各种路径信息,以下例子: 假设请求的页面是index.jsp,项目是WebDemo,则在index.jsp中获取有关request对象的各种路径信息如下 String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+&q…
这篇教程不错:http://zjutsoft.iteye.com/blog/1084260 自己试验如下: System.out.println("-----------------servlet-----------------"); System.out.println("realpath null:"+request.getRealPath("")); System.out.println("realpath index.jsp:…
转自:http://www.cnblogs.com/qqnnhhbb/archive/2007/10/16/926234.html 1.request对象 客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应.它是HttpServletRequest类的实例. 序号 方 法 说 明 1   object getAttribute(String name) 返回指定属性的属性值 2   Enumeration getAttributeNames() 返回所有可用属…
协议:request.getProtocol() 输出:HTTP/1.1 服务器信息 getServletConfig().getServletContext().getServerInfo() 输出:JavaServer Web Dev Kit/1.0 EA (JSP 1.0; Servlet 2.1; Java 1.2; Windows NT 5.0 x86; java.vendor=Sun Microsystems Inc.) 客户端IP: request.getRemoteAddr()…
tt.jsp <form action="tt2.jsp" method="POST"> <select name="two" multiple="multiple"> <option value="val1" selected="selected">Value 1</option> <option value="val2&…
<%@ page language="java" contentType="text/html;charset=utf8" %> <%@ page import="java.util.*"%> <html> <title> index page </title> <head> <h1> <center> JAVA SCRIPT </center&…
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.ge…
getParameter( ) :返回name指定参数的参数值 String[]  getParameterValues(String name)    :返回包含参数name的所有值的数值 getAttribute(Sting name)  :返回指定属性的值  例如 request.getAttribute("password")  获取密码 setAttribute(string Object) :存储此请求的属性值 例如 request.setAttribute("p…
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <%@page import="sun.awt.RepaintArea"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://&q…
客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应.它是HttpServletRequest类的实例:response对象包含了响应客户请求的有关信息,但在JSP中很少直接用到它.它是HttpServletResponse类的实例. 今天需要用的时候到处找了,今天记录下来备查. 一.Request  object getAttribute(String name) //返回指定属性的属性值 Enumeration getAttributeNames() //返…