码迷,mamicode.com
首页 > 编程语言 > 详细

java读取.properties配置文件

时间:2015-01-23 13:03:13      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

文件位置:

技术分享

文件内容:

技术分享

代码:

public class Test{
    public static void main (String[] args) throws IOException{
        Properties pro = new Properties();
        FileInputStream in =null;
        try{
            in = new FileInputStream("config\\db.properties");
        }catch (FileNotFoundException e){
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        pro.load(in);
        System.out.println (pro.getProperty ("driverName"));
        
//       
    }
}

  

java读取.properties配置文件

标签:

原文地址:http://www.cnblogs.com/staryy/p/4243610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!