获取ClassPath路径

String classPath = Thread.currentThread().getContextClassLoader().getResource("").getPath();
String classPath2 = PDFUtils.class.getProtectionDomain().getCodeSource().getLocation().getPath();
String classPath3 = PDFUtils.class.getProtectionDomain().getCodeSource().getLocation().getFile();
String classPath4 = PDFUtils.class.getClass().getResource("/").getPath();

你可能感兴趣的:(获取ClassPath路径)