Java通过编程方式获取有关WebSphere的信息

时间:2016-02-04 15:39:27

标签: java

我需要获取有关已安装的配置文件WebSphere和WebSphere版本的信息。我使用桌面Java应用程序。您需要通过编程方式获取的信息,而不使用.bat 怎么做?

1 个答案:

答案 0 :(得分:0)

如果您知道安装位置,则可以使用WASDirectory API获取已安装的产品版本。例如,如果您已在/ opt / IBM / WebSphere / AppServer中安装了WebSphere Application Server Base V8.5,那么

import com.ibm.websphere.product.WASDirectory;
public class WASInfo {
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        WASDirectory was = new WASDirectory("/opt/IBM/WebSphere/AppServer");

        System.out.println(was.getVersion(WASDirectory.ID_BASE));
    }
}