读取properties配置文件
Posted 算顺网
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取properties配置文件相关的知识,希望对你有一定的参考价值。
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配置文件的主要内容,如果未能解决你的问题,请参考以下文章