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;
原文地址:http://blog.csdn.net/wangcunhuazi/article/details/40627611