下面代码是获取操作系统的环境变量
public static void main(String[] args) throws IOException {
for(Map.Entry entry:System.getenv().entrySet()){
System.out.println(entry.getKey()+":"+entry.getValue());
}
}
下面代码是获取操作系统的环境变量
public static void main(String[] args) throws IOException {
for(Map.Entry entry:System.getenv().entrySet()){
System.out.println(entry.getKey()+":"+entry.getValue());
}
}