博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 中${key}获取应用配置信息
阅读量:5810 次
发布时间:2019-06-18

本文共 498 字,大约阅读时间需要 1 分钟。

  hot3.png

${key} 中key的值来至于系统配置信息

                Properties properties = System.getProperties();				@SuppressWarnings("unchecked")		Enumeration
 keys = (Enumeration
) properties.propertyNames(); while(keys.hasMoreElements()){ String key = keys.nextElement(); String value = properties.getProperty(key); System.out.println(); System.out.println(key + " = " + value); System.out.println(); }

上面代码可以遍历出所有系统配置信息。

自己写着玩

转载于:https://my.oschina.net/ruoxi/blog/386817

你可能感兴趣的文章