手机
当前位置:查字典教程网 >编程开发 >Java >JAVA读取属性文件的几种方法总结
JAVA读取属性文件的几种方法总结
摘要:1.使用java.util.Properties类的load()方法示例:Java代码InputStreamin=lnewBufferedI...

1.使用java.util.Properties类的load()方法

示例:

Java代码

InputStream in = lnew BufferedInputStream(new FileInputStream(name));

Properties p = new Properties();

p.load(in);

2.使用java.util.ResourceBundle类的getBundle()方法

示例:

Java代码

ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());

3.使用java.util.PropertyResourceBundle类的构造函数

示例:

Java代码

InputStream in = new BufferedInputStream(new FileInputStream(name));

ResourceBundle rb = new PropertyResourceBundle(in);

4.使用class变量的getResourceAsStream()方法

示例:

Java代码

InputStream in = JProperties.class.getResourceAsStream(name);

Properties p = new Properties();

p.load(in);

5.使用class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法

示例:

Java代码

InputStream in = JProperties.class.getClassLoader().getResourceAsStream(name);

Properties p = new Properties();

p.load(in);

6.使用java.lang.ClassLoader类的getSystemResourceAsStream()静态方法

示例:

Java代码

InputStream in = ClassLoader.getSystemResourceAsStream(name);

Properties p = new Properties();

p.load(in);

7.使用apache的PropertiesConfiguration类

示例:

Java代码

Configuration config = new PropertiesConfiguration("test.properties");

config.getProperty(key);

【JAVA读取属性文件的几种方法总结】相关文章:

java获取时间的方法总结

使用java获取md5值的两种方法

java 文件名截取方法

java中读取配置文件中数据的具体方法

JAVA中 终止线程的方法介绍

JAVA实现线程的三种方法

Java线程关闭的3种方法

JAVA中STRING的常用方法小结

关于struts返回对象json格式数据的方法

Java 获取指定日期的实现方法总结

精品推荐
分类导航