浏览 3509 次
锁定老帖子 主题:获取绝对路径(来自tom的总结)
精华帖 (0) :: 良好帖 (0) :: 新手帖 (1) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-12-05
今天开发项目中发现:request.getRealPath(arg0); 报警告:
The method getRealPath(String) from the type ServletRequest is deprecated
request.getRealPath("") 这个方法已经不推荐使用了,那代替它的是什么方法呢?
Deprecated. As of Version 2.1 of the Java Servlet API, use ServletContext.getRealPath(java.lang.String) instead.
request.getSession().getServletContext().getRealPath() 得到站点的绝对地址
在servlet或者struts中还可以这样:
this.getServletContext().getRealPath("/");
this.getServlet().getServletContext().getRealPath("/");
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |