我需要使用VM选项-noverify
运行一些测试
现在,我想警告此项目中的任何其他开发人员设置此选项,如果尚未完成的话。
另一种可能的解决方案当然是设置此选项而不是仅仅警告它。
答案 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);
}
}