installApps目录的websphere路径

时间:2015-06-04 12:51:39

标签: java websphere

爪哇 我如何获得websphere installedApps目录的路径?

我用

String webSphereAppsPath = new File(".").getCanonicalPath()

结果:

  

C:\ IBM \的WebSphere \ AppServer2 \型材\ AppSrv01

我需要结果:

  

C:\ IBM \的WebSphere \ AppServer2 \型材\ AppSrv01 \ installedApps \ BASTIONNode01Cell

1 个答案:

答案 0 :(得分:1)

根据知识中心的Application binary settings主题,您需要${APP_INSTALL_ROOT}/${CELL}。有关扩展此变量的示例代码,请参阅Creating, editing, and deleting WebSphere variables主题。

(也就是说,我怀疑直接访问这个目录是错误的方法。您应该考虑提出一个新问题:“X的最佳方法是什么?我可以通过查看installedApps目录来完成它,但似乎应该有更好的方法。“)