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

读取Properties文件操作

时间:2020-01-18 16:26:31      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:name   exception   NPU   public   cal   rod   driver   stream   getc   

import java.io.InputStream;
import java.util.Properties;
/**
 * 读取system.properties配置文件中的参数
 */
public class TestProperties {
    private static Properties TestProperties;
    //加载system.properties配置文件,读取文件的配置参数
    private static synchronized void loadProperties() {
        if(null==TestProperties) {
            try {
                Properties properties=new Properties();
                InputStream inputStream=TestProperties.class.getClassLoader().getResourceAsStream("system.properties");
                properties.load(inputStream);
                TestProperties=properties;
            }catch(Exception e) {
                throw new RuntimeException("未找到配置文件");
            }
        }
    }
    //读取配置文件中的参数的值
    public void get() {
      loadProperties();
      System.out.println(TestProperties.getProperty("jdbc.driverUrl"));
      System.out.println(TestProperties.getProperty("jdbc.driverClassName"));
      System.out.println(TestProperties.getProperty("jdbc.password"));
      System.out.println(TestProperties.getProperty("jdbc.user"));
    }
    public static void main(String[] args) {
        TestProperties testProperties=new TestProperties();
        testProperties.get();
    }
}

 

 

 

jdbc.driverUrl=jdbc:mysql://localhost:3306/idcard?characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.password=root
jdbc.user=root

读取Properties文件操作

标签:name   exception   NPU   public   cal   rod   driver   stream   getc   

原文地址:https://www.cnblogs.com/byczyz/p/12209216.html

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