Java读取Properties文件的六种方法

  使用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);

Java读取Properties文件的六种方法,布布扣,bubuko.com

时间: 2024-11-29 00:31:00

Java读取Properties文件的六种方法的相关文章

使用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, L

用java读取properties文件--转

今天为了通过java读取properties文件,google了很长时间,终于找到了.现在特记录之和大家一起分享.     下面直接贴出代码:java类 public class Mytest public static void readFile(String fileName) {//传入参数fileName是要读取的资源文件的文件名如(file.properties) InputStream in = null; Properties pros = new Properties(); tr

java加载properties文件的六种方法总结

java加载properties文件的六种方法总结 java加载properties文件的六中基本方式实现 java加载properties文件的方式主要分为两大类: >一种是通过import java.util.Properties类中的load(InputStream in)方法加载: >另一种是通过import java.util.ResourceBundle类的getBundle(String baseName)方法加载. 注意:一定要区分路径格式 实现代码如下: 1 2 3 4 5

java读取properties文件的方法

盗亦有道: http://blog.csdn.net/lwzcjd/article/details/3116298 http://hi.baidu.com/hgd0324/item/1d5e923973b77c4d033edcaf 这里介绍两种技术:利用spring读取properties 文件和利用java.util.Properties读取(一)利用spring读取properties 文件利用org.springframework.beans.factory.support.Propert

转载:java基础学习总结——java读取properties文件总结

java基础学习总结--java读取properties文件总结 一.java读取properties文件总结 在java项目中,操作properties文件是经常要做的,因为很多的配置信息都会写在properties文件中,这里主要是总结使用getResourceAsStream方法和InputStream流去读取properties文件,使用getResourceAsStream方法去读取properties文件时需要特别注意properties文件路径的写法,测试项目如下: 1.1.项目的

java基础学习总结——java读取properties文件总结

一.java读取properties文件总结 在java项目中,操作properties文件是经常要做的,因为很多的配置信息都会写在properties文件中,这里主要是总结使用getResourceAsStream方法和InputStream流去读取properties文件,使用getResourceAsStream方法去读取properties文件时需要特别注意properties文件路径的写法,测试项目如下: 1.1.项目的目录结构 1.2. java读取properties文件代码测试

Java读取.properties文件

例1: 创建一个config文件夹 config文件夹中有一个Properties.properties文件 内容为: capitalLetter=ABCDE smallLetter=abcde 注意:config文件夹与包含Test类的包为同一级 import java.io.IOException; import java.util.Properties; public class Test { public static void main(String[] args) { Propert

java读取.properties文件乱码

1.config.properties文件写不进中文,写进去都变成了unicode,解决办法是右键该文件--Properties--Resource--Text file encoding ,选other,我将other改为了UTF-8,这样可以写进去中文,但是读取时又变成乱码了. 2,解决读取乱码: String content = new String(PropertiesConfig.getProperty("mail.content").getBytes("ISO88

java读取.properties文件及解决中文乱码问题

Java项目中有些信息(例如web的配置信息)可能要放在.properties文件中,那我们应该怎么来读取它们呢,下面给出一个工具类做一说明,并解决了中文乱码问题: 1.其中config.properties文件信息如下: name=\u843D\u82B1\u6709\u610Fwang王 str=\u6D41\u6C34\u65E0\u60C5 boolean=true 2.PropertiesUtil工具类读取.properties文件 import java.io.BufferedInp