首页  编辑  

获取Jar包版本最简单优雅的方法

Tags: /Java/   Date Created:
在Java代码中,如果要获取打包的jar包的版本,最简单优雅的方法是:
String.class.getPackage().getImplementationVersion();
how to check the version of jar file? - Stack Overflo