java读取properties文件_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java读取properties文件

java读取properties文件

 2013/10/29 12:58:31  happyqing  程序员俱乐部  我要评论(0)
  • 摘要:1.用ResourceBundleResourceBundlerb=ResourceBundle.getBundle("jdbc");//没有.properties结尾Stringdriver=rb.getString("jdbc.driverClassName");2.用PropertiesPropertiesenv=newProperties();InputStreamis=ClassLoader.getSystemResourceAsStream("env.properties")
  • 标签:文件 Java

?

1.用ResourceBundle

ResourceBundle rb = ResourceBundle.getBundle("jdbc"); //没有.properties结尾
String driver = rb.getString("jdbc.driverClassName");

?

2.用Properties

Properties env = new Properties();

InputStream is = ClassLoader.getSystemResourceAsStream("env.properties");
env.load(is);

env.getProperty("jdbc.driverClassName")

?

JAVA操作properties文件

http://www.cnblogs.com/panjun-Donet/archive/2009/07/17/1525597.html

Java读取Properties文件的六种方法

http://hi.baidu.com/hgd0324/item/1d5e923973b77c4d033edcaf

?

发表评论
用户名: 匿名