Java 获取当前jar包执行的路径
程序员文章站
2022-03-02 18:33:43
...
1.应用根据需求来,直接上代码
//获取当前jar 的执行路径
ApplicationHome home = new ApplicationHome(getClass());
File jarFile = home.getSource();
String parent = jarFile.getParent();
System.out.println(parent);