欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java得到上下文的绝对路径 博客分类: java java 

程序员文章站 2024-02-16 23:05:58
...
/* 第一种:在 Struts2 当中,Struts1同样也可通过这种形式获取: */  
/* 获取 request 对象 */  
HttpServletRequest request = ServletActionContext.getRequest();   
/* 得到当前上下文绝对路径以保存图片 */  
String contextPath = request.getSession().getServletContext().getRealPath("\\");   
  
/* 第二种:在 Filter 当中: */  
public void init(FilterConfig config) throws ServletException {   
  /* 可将此参数放入到 Session 可供全局使用 */  
  String contextPath = config.getServletContext().getRealPath("\\");   
 }   
  
/* 第三种 */  
String contextPath = request.getScheme()+"://"+request.getServerName()    +":"+request.getServerPort()+request.getContextPath()+"/";  

相关标签: java