如果在JVM上设置`-noverify`,有没有办法以编程方式检查?

时间:2016-02-18 10:22:38

标签: java jvm jvm-arguments

我需要使用VM选项-noverify运行一些测试 现在,我想警告此项目中的任何其他开发人员设置此选项,如果尚未完成的话。

另一种可能的解决方案当然是设置此选项而不是仅仅警告它。

1 个答案:

答案 0 :(得分:0)

java.lang.System.getProperties()方法确定当前系统属性。 getProperty(String)方法使用的当前系统属性集将作为Properties对象返回。

运行此程序

public class ShowSystemProps {

   public static void main(String[] args) {

   // Get the current system properties
   Properties p = System.getProperties();
   p.list(System.out);
  }
}