获取类根路径及jar包路径

阅读更多
public File  getClassRootDir(Class classz){
   String filePath = classz.getProtectionDomain().getCodeSource().getLocation().getFile();
   return  new File(filePath);
}
public File getJarFile(Class classz){
    String filePath = classz.getProtectionDomain().getCodeSource().getLocation().getFile();
    return  new File(filePath);
}

你可能感兴趣的:(获取类根路径及jar包路径)