posts - 104,  comments - 34,  trackbacks - 0

package test;

import java.util.Enumeration;
import java.util.Properties;

/**
 * 描述:取得当前的系统信息.
 */
public class GetSystemV {

    public GetSystemV() {

        Properties pro = System.getProperties();
        System.out.println("dir is " + System.getProperty("user.dir"));
       
        for (Enumeration enums = pro.propertyNames(); enums.hasMoreElements();) {
            String item = (String) enums.nextElement();
            System.out.println(item + ":" + System.getProperty(item));
        }
    }

    public static void main(String[] args) {
        new GetSystemV();
    }
}

posted on 2007-10-31 14:36 末日风情 阅读(229) 评论(0)  编辑  收藏 所属分类: java编程

只有注册用户登录后才能发表评论。


网站导航:
 
<2007年10月>
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910

常用链接

留言簿(4)

随笔分类

随笔档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜