获得项目绝对路径

public static String getSerlvetContextPath()
 {
 
  String classPath = Thread.currentThread().getContextClassLoader()
   .getResource("").getPath();
  File file = new File(classPath);

  String path = file.getParentFile().getParentFile().getPath();
  
  return path;
 }

你可能感兴趣的:(获得项目绝对路径)