-p
有没有什么方法可以在运行时使用 of或参数获取包含在模块路径中的目录列表,--module-path
类似于我使用 获取所有类路径目录的方式System.getProperty("java.class.path")
?
问问题
670 次
1 回答
7
来自 Javadoc 的System.getProperties
:
In addition to the standard system properties,
the system properties may include the following keys:
Key Description of Associated Value
jdk.module.path The application module path
jdk.module.upgrade.path The upgrade module path
jdk.module.main The module name of the initial/main module
jdk.module.main.class The main class name of the initial module
所以你应该使用System.getProperty("jdk.module.path")
于 2018-05-26T15:32:18.213 回答