访问量: 34738次,访客数: 29752人,浏览量: 1次 
首页  编辑  

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

Tags: /Java/   Date Created: Mon Dec 26 2022 07:44:04 GMT+0000 (Coordinated Universal Time)
在Java代码中,如果要获取打包的jar包的版本,最简单优雅的方法是:
String.class.getPackage().getImplementationVersion();
how to check the version of jar file? - Stack Overflo