java 获取类位置目录

public String getWebClassesPath() {
 String path = getClass().getProtectionDomain().getCodeSource()
 .getLocation().getPath();
 return path;
 
}

 

你可能感兴趣的:(java 获取类位置目录)