要获取一个jar包所在的目录,可以使用以下方法:
String jarPath = YourClass.class.getProtectionDomain().getCodeSource().getLocation().getPath();
String jarDirectory = new File(jarPath).getParent();
System.out.println("Jar Directory: " + jarDirectory);
上面的代码中,YourClass
是你想要获取jar包所在目录的class。通过YourClass.class.getProtectionDomain().getCodeSource().getLocation().getPath()
方法获取jar包的路径,然后使用File
对象来获取jar包所在的目录。最后,将获取到的目录路径打印输出。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
相关推荐:java怎么获取jar包所在的目录