我正在尝试将我的主要可执行jar文件本身复制到另一个位置。

我怎样才能做到这一点?

最佳答案

return new File(MyClass.class.getProtectionDomain().
 getCodeSource().
 getLocation().
 getURI().
 getPath()).getName();


将返回全名

09-05 09:01