为properties定制的资源绑定器
Posted 孤独的自由人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为properties定制的资源绑定器相关的知识,希望对你有一定的参考价值。
package com.day06;
import java.util.ResourceBundle;
/**
* @author anyan
* @date 2021/5/25-20:40
*/
/*
资源绑定器的使用。java.util包下专门为.properties文件提供了一个资源绑定器
1.必须以.properties为后缀
2. .properties文件必须存储在类目录下。莫瑞诺情况下以src为其实路径
3.调用Resource.getBundle()方法时所传递的参数不可以带有文件后缀
*/
public class SourceTest01 {
public static void main(String[] args) {
ResourceBundle rb=ResourceBundle.getBundle("com/day06/classinfor");
System.out.println(rb);
String s=rb.getString("userName");
System.out.println(s);
}
}
以上是关于为properties定制的资源绑定器的主要内容,如果未能解决你的问题,请参考以下文章