首页 > 其他 > 详细

当前工程读取配置文件示例

时间:2015-02-06 20:19:49      阅读:360      评论:0      收藏:0      [点我收藏+]

当前工程目录读取配置示例:

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println(getConfigPath());

    }
    public static String getConfigDir(){
        String userDir=System.getProperty("user.dir");
        if(System.getProperty("os.name").toLowerCase().contains("windows")){
            return userDir+File.separator+"conf";
        }else{
            return userDir+File.separator+"conf";
        }
    }
    public static String getConfigPath(){
        return getConfigDir()+File.separator+"config.properties";
    }

 

当前工程读取配置文件示例

原文:http://www.cnblogs.com/davidwang456/p/4277896.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!