java 资源文件_java中读取资源文件的方法

展开全部

1.使用java.util.Properties类的load()方法

示例:

//文件在项目下。不是在包下!!

InputStream in = new BufferedInputStream(new FileInputStream("demo.properties")) ;

Properties p = new Properties();

p.load(in) ;

String className2 = p.getProperty("database.driver");

String url = p.getProperty("database.url");

String user = p.getProperty("database.user");

String password = p.getProperty("database.pass");

61625edf62926e60eb397ab936c842b4.png

2. 使用java.util.Resourcebundle类的getbundle()方法

//前面没有“/”代表当前类的目录

示例:

//文件和类在同一个包下,注意它的文件名和后缀!!是调换的,

ResourceBundle resource = ResourceBundle.getBundle("properties.jdbc");

String className = resource.getString("database.driver");

String url = resource.getString("database.url");

String user = resource.getString("database.user");

String password = resource.getString("database.pass");

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

示例:

// 文件在项目下  或者  src/demo.properties

//  在 src/demo.properties  写成 new FileInputStream("src/demo.properties")

InputStream in = new BufferedInputStream(new             FileInputStream("demo.properties"));

ResourceBundle rb = new PropertyResourceBundle(in) ;

String className4 = rb.getString("database.url");

ffcd20931d96fb0f0cab3fd9cb466490.png

4.使用class变量的getresourceasstream()方法

示例:

InputStream in =Properties.class.getResourceAsStream("/properties/jdbc.properties");

// 包点类名下的。

// 如果找不到带有该名称的资源,则返回 null

Properties p = new Properties();

p.load(in);

System.out.println(p.getProperty("database.url"));

08984d36aa327655b873daebc158a65c.png

5.使用class.getclassloader()所得到的java.lang.classloader的getresourceasstream()方法

// properties 文件 要放在src下面,否则找不到啊

示例:

InputStream in = 类名.class.getClassLoader().getResourceAsStream("jdbc.properties");

Properties p = new Properties() ;

p.load(in);

System.out.println(p.getProperty("database.pass"));

6.使用java.lang.classloader类的getsystemresourceasstream()静态方法

示例:

// 同包名下

InputStream in = ClassLoader.getSystemResourceAsStream("properties/jdbc.properties");

Properties p = new Properties() ;

p.load(in) ;

System.out.println(p.getProperty("database.user"));

6477a04854059c88da10c23bc5b31bce.png

总结:如果是 在WEB上读取properties文件,写成下面这种。上面写的那些只在 JavaSE 中

String path = Thread.currentThread().getContextClassLoader().getResource("").getPath();

System.out.println(path);

InputStream in = new FileInputStream(new File(path+File.separator+"mysql.properties"));

Properties prop = new Properties();

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值