All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.setting.SettingUtil Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.setting;

import cn.hutool.core.io.file.FileNameUtil;
import cn.hutool.core.io.resource.NoResourceException;
import cn.hutool.core.map.SafeConcurrentHashMap;
import cn.hutool.core.util.StrUtil;

import java.util.Map;

/**
 * Setting工具类
* 提供静态方法获取配置文件 * * @author looly */ public class SettingUtil { /** * 配置文件缓存 */ private static final Map SETTING_MAP = new SafeConcurrentHashMap<>(); /** * 获取当前环境下的配置文件
* name可以为不包括扩展名的文件名(默认.setting为结尾),也可以是文件名全称 * * @param name 文件名,如果没有扩展名,默认为.setting * @return 当前环境下配置文件 */ public static Setting get(String name) { return SETTING_MAP.computeIfAbsent(name, (filePath)->{ final String extName = FileNameUtil.extName(filePath); if (StrUtil.isEmpty(extName)) { filePath = filePath + "." + Setting.EXT_NAME; } return new Setting(filePath, true); }); } /** * 获取给定路径找到的第一个配置文件
* * name可以为不包括扩展名的文件名(默认.setting为结尾),也可以是文件名全称 * * @param names 文件名,如果没有扩展名,默认为.setting * * @return 当前环境下配置文件 * @since 5.1.3 */ public static Setting getFirstFound(String... names) { for (String name : names) { try { return get(name); } catch (NoResourceException e) { //ignore } } return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy