jier的博客

java中获得系统路径

在Application中:
System.getProperty("user.dir")

在Servlet中:
ServletContext servletContext = config.getServletContext();
String rootPath = servletContext.getRealPath("/");

在自定义标签中,分布式环境下,用
((HttpServletRequest) this.pageContext.getRequest()).getContextPath();获取web的路径,
如“\web”

在jsp中:
application.getRealPath("")

posted on 2007-09-03 17:24 夏雪 阅读(227) 评论(0)  编辑  收藏 所属分类: Java基础研究


只有注册用户登录后才能发表评论。


网站导航: