1 import java.util.Map;
2
3 /**
4 * 讀取系統(tǒng)的環(huán)境變量
5 * @author
6 * @see Map
7 */
8 public class EnvironmentVariables {
9
10 public static void main(String[] args) {
11 for (Map.Entry<String, String> entry : System.getenv().entrySet()) {
12 System.out.println(entry.getKey() + ":" + entry.getValue());
13 }
14 }
15
16 }
posted on 2009-04-26 21:43
狼人 閱讀(823)
評(píng)論(0) 編輯 收藏 所屬分類(lèi):
Java