WEB 获取项目部署根目录

URL url = Function.class.getResource("Function.class");
String temppath = url.toString();
int startIndex = temppath.indexOf("file:");
int index = temppath.indexOf("WEB-INF");
basePath = temppath.substring(startIndex + "file:".length() + 1, index);


// 如果是linux的操作系统,并且开始没有file分隔符的话,那么要加上
if (System.getProperty("os.name").indexOf("Linux") != -1) {
if (!basePath.startsWith(File.separator)) {
basePath = File.separator + basePath;
}
}

你可能感兴趣的:(ssh)