java中如何获得系统路径!

发表于:2007-06-22来源:作者:点击数: 标签:

   

在Application中:
System.getProperty("user.dir")
在Servlet中:
ServletContext servletContext = config.getServletContext();
String rootPath = servletContext.getRealPath("/");
在jsp中:

application.getRealPath("")

原文转自:http://www.ltesting.net