JVM启动参数 -D作用

原文:https://blog.csdn.net/u012345283/article/details/40823637

JVM启动参数 -D是用来做什么的呢?去查询了一下官方解释:

Set a system property value. If value is a string that contains spaces, you must enclose the string in double quotes:

 

java -Dfoo="some string" SomeClass

 

也就是说-D是用来在启动一个java程序时设置系统属性值的。如果该值是一个字符串且包含空格,那么需要包在一对双引号中

何为系统属性值呢?也就是在System类中通过getProperties()得到的一串系统属性。

下面我们来写个测试方法就知道了!

  1. public class TestSystem {

  2. public static void main(String args[]) {

  3. System.out.println(System.getProperty("fuck.abc"));

  4. }

  5. }

在运行改程序时加上JVM参数-Dfuck.abc="1234",那么运行之后你可以看到控制台输出了1234!

需要设置的是JVM参数,这里的program arguments指的是main方法中的args数组,注意看下图

 

你可能感兴趣的:(JVM)