快速业务通道

J2SE API读取Properties文件的六种方法 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18

J2SE API读取Properties文件的六种方法

时间:2011-02-28

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

J2SE API读取Properties文件的六种方法(2)

时间:2011-02-28

完整的示例:

JProperties.java文件

package com.kindani; //import javax.servlet.ServletContext; import java.util.*; import java.io.InputStream; import java.io.IOException; import java.io.BufferedInputStream; import java.io.FileInputStream; /** * 使用J2SE API?取Properties文件的六种方法 * User: SYNFORM * Date: 2005/07/12 * Time: 18:40:55 * To change this template use File | Settings | File Templates. */ public class JProperties {    public final static int BY_PROPERTIES = 1;    public final static int BY_RESOURCEBUNDLE = 2;    public final static int BY_PROPERTYRESOURCEBUNDLE = 3;    public final static int BY_CLASS = 4;    public final static int BY_CLASSLOADER = 5;    public final static int BY_SYSTEM_CLASSLOADER = 6;    public final static Properties loadProperties( final String name, final int type) throws IOException {      Properties p = new Properties();      InputStream in = null;      if (type == BY_PROPERTIES) {        in = new BufferedInputStream(new FileInputStream(name));        assert (in != null);        p.load(in);      } else if (type == BY_RESOURCEBUNDLE) {        ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());        assert (rb != null);        p = new ResourceBundleAdapter(rb);      } else if (type == BY_PROPERTYRESOURCEBUNDLE) {        in = new BufferedInputStream(new FileInputStream(name));        assert (in != null);        ResourceBundle rb = new PropertyResourceBundle(in);        p = new ResourceBundleAdapter(rb);      } else if (type == BY_CLASS) {

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号