当前位置: 技术问答>java相关
String sPath=request.getContextPath();中sPath的值是?
来源: 互联网 发布时间:2015-06-25
本文导语: 我是用weblogic 6.1的 String sPath=request.getContextPath();中sPath的值怎么是空的呢? 我输入的路径是:http://localhost:7001/test/login.jsp 然后在http://localhost:7001/test/login_action.jsp下想取得test 用String sPath=request.getContextPath();不对...
我是用weblogic 6.1的
String sPath=request.getContextPath();中sPath的值怎么是空的呢?
我输入的路径是:http://localhost:7001/test/login.jsp
然后在http://localhost:7001/test/login_action.jsp下想取得test
用String sPath=request.getContextPath();不对么?该如何取?急!
String sPath=request.getContextPath();中sPath的值怎么是空的呢?
我输入的路径是:http://localhost:7001/test/login.jsp
然后在http://localhost:7001/test/login_action.jsp下想取得test
用String sPath=request.getContextPath();不对么?该如何取?急!
|
try:
String sPath=request.getServletPath();
sPath = sPath.substring(0,sPath.lastIndexOf("/")) ;
String sPath=request.getServletPath();
sPath = sPath.substring(0,sPath.lastIndexOf("/")) ;
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。