使用J2SE API读取Properties文件的六种方法
1。使用java.util.Properties类的load()方法
示例: 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.getResourceAsStream(name);
Properties p = new Properties();
p.load(in);
5。使用class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法
示例: 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);
补充
Servlet中可以使用javax.servlet.ServletContext的getResourceAsStream()方法
示例:InputStream in = context.getResourceAsStream(path);
Properties p = new Properties();
p.load(in);
相关文章
- 08-03使用FileReader对象的readAsDataURL方法来读取图像文件
- 08-03spring使用@Value注解读取.properties文件时出现中文乱码问题的解决
- 08-03使用Python读取.xlsx文件的最快方法
- 08-03Java读取Properties文件的六种方法 .
- 08-03使用java 程序创建格式为utf-8文件的方法(写入和读取json文件)
- 08-03最强大的使用Java读取文件或流的方法(防止DoS攻击)
- 08-03C#中经常使用的几种读取XML文件的方法
- 08-03springBoot使用@Value标签读取*.properties文件的中文乱码问题
- 08-03Java使用ResourceBundle类读取properties文件中文乱码的解决方案
- 08-03java读取properties文件的几种方法