java获取服务器根目录

获取服务器Tomcat目录下webapps(项目发布的位置)的根路径,对Linux和Windows系统下分别使用斜杠和反斜杠的问题进行了处理。

具体实现如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

* Gets the root path of server.
*
* @return the root path
*/
public static String () {
String classPath = Thread.currentThread().getContextClassLoader()
.getResource("").getPath();
String rootPath = "";

/** For Windows */
if ("\".equals(File.separator)) {
String path = classPath.substring(1, classPath.indexOf("/WEB-INF/classes"));
rootPath = path.substring(0, path.lastIndexOf("/"));
rootPath = rootPath.replace("/", "\");
}

/** For Linux */
if ("/".equals(File.separator)) {
String path = classPath.substring(0, classPath.indexOf("/WEB-INF/classes"));
rootPath = path.substring(0, path.lastIndexOf("/"));
rootPath = rootPath.replace("\", "/");
}
return rootPath;
}