String proFilePath = System.getProperty("user.dir") + "\\Mysettings.properties";
        Properties prop = new Properties();
        MonitorProperties monitorProperties=new MonitorProperties();

        // InputStream in = Object.class.getResourceAsStream(proFilePath);//配置文件在jar包内则用这种形式
        InputStream in = new FileInputStream(proFilePath);//配置文件在jar包外面则用这种形式
        prop.load(in);
        monitorProperties.setServerUrl(prop.getProperty("serverUrl").trim());

posted on 2016-03-21 15:33  xuxu_dragon  阅读(387)  评论(0编辑  收藏  举报