码迷,mamicode.com
首页 > Web开发 > 详细

struts2中取得web项目的根目录

时间:2014-10-30 22:40:12      阅读:602      评论:0      收藏:0      [点我收藏+]

标签: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项目的根目录

标签:struts2   web根目录   

原文地址:http://blog.csdn.net/wangcunhuazi/article/details/40627611

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!