首页 > 代码库 > struts2中取得web项目的根目录

struts2中取得web项目的根目录


struts2中取得web项目的根目录


        /**
	  * 获得web项目根目录
	  */
	public String getWebRootPath() throws Exception {
		ActionContext actionContext = ActionContext.getContext();
		ServletContext servletContext = (ServletContext)actionContext.get(ServletActionContext.SERVLET_CONTEXT);
		String rootPath = servletContext.getRealPath("/");
		return rootPath;
	}


在项目中使用了该段代码,可能出现错误,原因是还没有导入相应的包。以上的代码需要导入的包有: 


import javax.servlet.ServletContext;


import org.apache.struts2.ServletActionContext;


import com.opensymphony.xwork2.ActionContext;



在别的程序中调用getWebRootPath()方法即可得到web项目的根目录


  

struts2中取得web项目的根目录