Java現在のjarパッケージの実行パスの取得

275 ワード

1.アプリケーションは必要に応じて、直接コードをつける
//    jar      
            ApplicationHome home = new ApplicationHome(getClass());
            File jarFile = home.getSource();
            String parent = jarFile.getParent();
            System.out.println(parent);