如何知道eclipse的版本名称?

时间:2014-07-17 09:53:54

标签: java eclipse

我安装了新的月食Luna。

我怎么能在代码中知道eclipse版本?(Luna或Kepler ....) 我想在code.I中需要添加逻辑,以防日食是Luna

2 个答案:

答案 0 :(得分:1)

在Eclipse插件中,您可以使用以下方式获取有关产品的信息:

IProduct product = Platform.getProduct();

关于对话框文本是通过以下方式获得的:

String aboutText = product.getProperty(IProductConstants.ABOUT_TEXT);

我不认为有什么能给你Eclipse版本(4.4)或名字(Luna)。

通常最好检查特定插件的版本,例如:

Bundle bundle = Platform.getBundle("org.eclipse.platform");

Version version = bundle.getVersion();

if (version.getMajor() == 4 && version.getMinor() == 4)
 {
   ... version 4.4
 }

答案 1 :(得分:0)

在菜单栏中转到帮助>关于Eclipse。

实施例。 -

Version: Indigo Service Release 1
Build id: 20110916-0149