java学习之properties的几种加载方式_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java学习之properties的几种加载方式

java学习之properties的几种加载方式

 2014/11/27 18:33:43  lijie_insist  程序员俱乐部  我要评论(0)
  • 摘要:properties类型的配置文件项目中见得并不少,不同的项目总是看到不同的加载方式,不知道是因人而异还是有什么原因,总之看到过的加载很多,在网上找到了些方法,做下记载1.使用java.util.Properties类的load()方法InputStreamin=lnewBufferedInputStream(newFileInputStream(name));Propertiesp=newProperties();p.load(in);2.使用java.util
  • 标签:学习 Java 方式
properties类型的配置文件项目中见得并不少,不同的项目总是看到不同的加载方式,不知道是因人而异还是有什么原因,总之看到过的加载很多,在网上找到了些方法,做下记载

1.使用java.util.Properties类的load()方法
class="java">InputStream in = lnew BufferedInputStream(new FileInputStream(name));
Properties p = new Properties();
p.load(in); 


2.使用java.util.ResourceBundle类的getBundle()方法
ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault()); 


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

InputStream in = new BufferedInputStream(new FileInputStream(name));
ResourceBundle rb = new PropertyResourceBundle(in); 


4.使用class变量的getResourceAsStream()方法
InputStream in = JProperties.class.getClassLoader().getResourceAsStream(name);
Properties p = new Properties();
p.load(in); 


[b]5.使用class.getClassLoader()所得到的java.lang.ClassLoader的
getResourceAsStream()方法 [/b]
 InputStream in = JProperties.class.getClassLoader().getResourceAsStream(name);
Properties p = new Properties();
p.load(in); 


6.使用java.lang.ClassLoader类的getSystemResourceAsStream()静态方法
InputStream in = ClassLoader.getSystemResourceAsStream(name);
Properties p = new Properties();
p.load(in); 


7.Servlet中可以使用javax.servlet.ServletContext的getResourceAsStream()方法
InputStream in = context.getResourceAsStream(path);
Properties p = new Properties();
p.load(in);


以上7种 好多我自己没试过,不知道可以不可以,仅仅只是总结而已!
发表评论
用户名: 匿名