java中如何获得系统路径!

类别:Java 点击:0 评论:0 推荐:
在Application中:
System.getProperty("user.dir")
在Servlet中:
ServletContext servletContext = config.getServletContext();
String rootPath = servletContext.getRealPath("/");
在jsp中:
application.getRealPath("")

本文地址:http://com.8s8s.com/it/it13696.htm