码迷,mamicode.com
首页 > 其他好文 > 详细

读取properties配置文件

时间:2017-04-20 17:05:42      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:style   new   log   内存   exception   关闭   reader   pac   import   

package com.bjpowernode.jdbc;

import java.io.FileReader;
import java.io.IOException;
import java.util.Properties;

public class readConf {

    public static void main(String[] args) throws IOException {
        // TODO Auto-generated method stub
        FileReader filereader=new FileReader("conf/server.properties");
        //创建属性对象
        Properties pro=new Properties();
        //通过属性对象的load方法将配置文件的信息加载到内存中生成一个map集合
        pro.load(filereader);
        //关闭流
        filereader.close();
        System.out.println(pro.getProperty("driver"));
    }

}

 

读取properties配置文件

标签:style   new   log   内存   exception   关闭   reader   pac   import   

原文地址:http://www.cnblogs.com/suanshun/p/6739442.html

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