request中的getScheme(),getServerName(),getContextPath()的用法是什么?

如题所述

第1个回答  2010-07-22
举个例子
http://zhidao.baidu.com/question/168804058.html

getScheme()=http,
getServerName()=zhidao.baidu.com;
getContextPath()=http://zhidao.baidu.com本回答被提问者采纳
第2个回答  2018-01-11
getContextPath()=/question

request中的getScheme(),getServerName(),getContextPath()的用法是什 ...
getServerName()=zhidao.baidu.com;getContextPath()=http:\/\/zhidao.baidu.com

java用getServletContext().getRealPath("\/")获取项目路径的问题
request.getScheme()得到协议如:http:\/\/ request.getServerName() 得到服务器名称如:127.0.0.1 request.getServerPort() 得到端口号如8080 request.getContextPath() 得到当前上下文路径,也就是安装后的文件夹位置。上面 连起来拼成完整的url request.getRealPath()得到当前真实路径,不管是比如D:\\xx...

java获取请求域名
1、获取协议名和域名。request.getScheme(); \/\/得到协议名 例如:http request.getServerName(); \/\/得到域名 localhost 2、获取全路径。request.getRequestURL(); \/\/得到http:\/\/localhost:8888\/CRM\/loginController\/login 3、获取请求所有参数 \/\/map类型。request.getPa...

菜鸟求教,request.getRealPath("")已经废弃不用,求可以代替的完成相同...
String path = request.getContextPath();String basePath = request.getScheme()+":\/\/"+request.getServerName()+":"+request.getServerPort()+path+"\/";--basePath--就是你项目的根路径

path = request.getcontextpath()有什么用
这样的代码是在jsp里出现的吧,那么他的含义就是为了得到一个路径,做动态网站时,需要提交form表单 在表单的action里面就会这样来写 action="<%=path %>\/add.do"这样来提交到相应的servlet中去,这样可以避免路径的错误,而采用这样的相对路径会更好些 ...

...getServerName()+":"+request.getServerPort()+pat
1、request.getScheme() 返回协议的名称 http,和后面的":\/\/" 拼起来就成了 http:\/\/ 2、request.getServerName() 这是获取你的服务器的名称,如果你的应用部署在本机那么其就返回localhost或者127.0.0.1 ,这2个是等价的 3、request.getServerPort() 是你应用使用的端口,比如8080或者80 ...

Request中的各种方法
    System.out.println("request.getContextPath():" + request.getContextPath()); \/\/ 获取上下文路径,就是"\/"+工程名     System.out.println("request.getLocalAddr():" + request.getLocalAddr()); \/\/ 获取应用服务器的IP地址     System.out...

有关jsp中requet的详解
getContextPath()返回请求URL所属于的Web应用程序的路径 getMethod()返回HTTP请求消息中的请求方式 getServerName()返回当前请求所指向的主机名 getServerPort()返回当前请求所连接的服务器端口号 getRemoteAddr()返回发出请求的客户机的IP地址 getLocalAddr()返回Web服务器上接受当前请求的网络接口的IP地址 ...

web项目中,request的方法详解
知其然知其所以然,知道它大体上的含义,看看在项目中是如何使用的 String path = request.getContextPath();  String basePath = request.getScheme()+":\/\/"+request.getServerName()+":"+request.getServerPort()+path+"\/";">  ...

jsp有哪些内置对象?作用分别是什么?
4 void removeAttribute(String name) 删除一属性及其属性值 5 String getServerInfo() 返回JSP(SERVLET)引擎名及版本号 6 String getRealPath(String path) 返回一虚拟路径的真实路径 7 ServletContext getContext(String uripath) 返回指定WebApplication的application对象 8 int getMajorVersion() 返回服务器支持的Ser...

相似回答