public static void main(String[] args) {
Properties properties = System.getProperties();
Iterator<Entry<Object, Object>> iterator = properties.entrySet().iterator();
while (iterator.hasNext())
{
Entry<Object, Object> entry = iterator.next();
System.out.println(entry.getKey() + "===" + entry.getValue());
}
}
获取系统信息
Posted For_elegant
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取系统信息相关的知识,希望对你有一定的参考价值。
以上是关于获取系统信息的主要内容,如果未能解决你的问题,请参考以下文章