java 获取配置文件数据

以下代码没有使用spring的工具类来获取 config配置文件的数据

public class PropertiesUtil
{
    /**
     * 配置文件对象
     */
    private  static Properties props= new Properties();

    static {
        try
        {
            // myspring.properties 为配置文件所在的位置
            props.load(PropertiesUtil.class.getClassLoader().getResourceAsStream("myspring.properties"));
        }
        catch (IOException e)
        {

            e.printStackTrace();
        }
    }

    public static String getValue(String key)
    {
        return props.getProperty(key);
    }

    public static void main(String[] args)
    {
        // 获取 myspring.base.package的value
        System.out.println(getValue("myspring.base.package"));
    }

}

你可能感兴趣的:(java 获取配置文件数据)