设为首页 加入收藏

TOP

读取Properties文件六种方法
2014-11-04 10:00:09 】 浏览:1245
Tags:读取 Properties 文件 方法

  1.使用java.util.Properties类的load()方法示例:InputStreamin=lnewBufferedInputStream(newFileInputStream(name)); Propertiesp=newProperties();p.load(in);


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


  3.使用java.util.PropertyResourceBundle类的构造函数示例:InputStreamin=newBufferedInputStream(newFileInputStream(name)); ResourceBundlerb=newPropertyResourceBundle(in);


  4.使用class变量的 getResourceAsStream()方法示例:InputStreamin=JProperties.class.getResourceAsStream(name); Propertiesp=newProperties();p.load(in);


  5.使用 class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法示例:InputStreamin=JProperties.class.getClassLoader().getResourceAsStream(name); Propertiesp=newProperties();p.load(in);


  6.使用 java.lang.ClassLoader类的getSystemResourceAsStream()静态方法示例:InputStreamin=ClassLoader.getSystemResourceAsStream(name); Propertiesp=newProperties();p.load(in);


  补充


  Servlet中可以使用javax.servlet.ServletContext的getResourceAsStream()方法示例:InputStreamin=context.getResourceAsStream(path); Propertiesp=newProperties();p.load(in);


  编辑特别推荐:


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Java中线程通信的机制 下一篇JAVA语言编程中如何使用表达式

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目