在java web项目中,action中怎么获取工作空间中的webroot目录,例如:G:/eclipse/whkms/WebRoot
展开全部
struts1中通常使用使用
this.getServlet().getServletContext().getResource("/").getPath();
struts2中
ServletActionContext.getServletContext().getResource("/").getPath();
上面是获取绝对路径字符串的
去掉getPath()获取到的是URL格式的!
有问题在追问吧,good luck!~
this.getServlet().getServletContext().getResource("/").getPath();
struts2中
ServletActionContext.getServletContext().getResource("/").getPath();
上面是获取绝对路径字符串的
去掉getPath()获取到的是URL格式的!
有问题在追问吧,good luck!~
追问
用你的方法得到的为:/localhost/whkms/
但我是想知道怎么取到G:/eclipse/whkms/WebRoot
追答
ActionContext ac = ActionContext.getContext();
ServletContext sc = (ServletContext) ac.get(ServletActionContext.SERVLET_CONTEXT);
String x = sc.getRealPath("/");
你也可以试试这种方式
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询