是否有 Java API 可以获取 VM 参数?
可能的重复:
如何从java应用程序内部获取vm参数?< /a>
我想在日志文件中打印 Java 进程的当前命令行选项。 Java中有没有API可以请求这个参数? I 并不是指传递给 main 的程序参数。我对 -X 和 -D 参数很感兴趣。
Possible Duplicate:
How to get vm arguments from inside of java application?
I want print the current command line options of a Java process in a log file. Is there an API in Java to request this parameters? I does not means the program arguments that are passed to main. I am interesting on the -X and -D parameters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此方法将为您提供所有命令行参数 RuntimeMXBean.getInputArguments()
This method will give you all the command line arguments RuntimeMXBean.getInputArguments()
您可以使用 System.getProperty(String property) 获取传递的系统属性(-D 标志)。
如果您使用此方法,您必须提供属性名称,如果您想获取所有属性,只需使用 System.getProperties()。
You can get passed system properties (-D flag) using System.getProperty(String property).
If you use this method you must provide property name, if you would like to get all the properties just use System.getProperties().