读取properties文件
Posted kwaitfort
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取properties文件相关的知识,希望对你有一定的参考价值。
读取 配置文件的两个方法
1. xxx.class.getClassLoader() .getResourceAsStream(xxxx)
1 Properties p =new Properties(); 2 p.load(Test.class.getClassLoader() 3 .getResourceAsStream 4 ("com/springFactory/spring.properties"));; 5 // properties文件放在了 src 目录 6 // 编译后,properties 文件会在 bin目录(即classpath) 7 8 String vehicleTypeName = p.getProperty("VehicleType"); 9 System.out.println(vehicleTypeName);
2.
InputStream in = Thread.currentThread().
getContextClassLoader().
getResourceAsStream("jdbc.properties");
p.load(in);
以上是关于读取properties文件的主要内容,如果未能解决你的问题,请参考以下文章