是否有 Java API 可以获取 VM 参数?

发布于 2024-12-18 18:31:27 字数 425 浏览 0 评论 0原文

可能的重复:
如何从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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷弦 2024-12-25 18:31:27

此方法将为您提供所有命令行参数 RuntimeMXBean.getInputArguments()

This method will give you all the command line arguments RuntimeMXBean.getInputArguments()

无需解释 2024-12-25 18:31:27

您可以使用 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().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文