当前位置: 首页 > 编程笔记 >

如何基于JAVA读取yml配置文件指定key内容

奚飞星
2023-03-14
本文向大家介绍如何基于JAVA读取yml配置文件指定key内容,包括了如何基于JAVA读取yml配置文件指定key内容的使用技巧和注意事项,需要的朋友参考一下

这篇文章主要介绍了如何基于JAVA读取yml配置文件指定key内容,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

先引入需要的依赖

<!--读取yml文件-->
    <dependency>
      <groupId>org.yaml</groupId>
      <artifactId>snakeyaml</artifactId>
      <version>1.23</version>
    </dependency>

读取YML文件工具类的代码

import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.ResourceUtils;
import org.yaml.snakeyaml.Yaml;

import java.io.*;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
 * @author hunmeng
 * @create 2020-01-10 20:34
 */
public class YmlUtils {

  private static final Logger LOGGER = LoggerFactory.getLogger(YmlUtils.class);

  private static String bootstrap_file = "classpath:application-test.yml";

  private static Map<String,String> result = new HashMap<>();

  /**
   * 根据文件名获取yml的文件内容
   * @param filePath
   * @param keys 第一个参数对应第一个key,第二个参数对应第二个key 比如spring.name下的所有 就是两个参数、
   *       getYmlByFileName(bootstrap_file,"spring", "name");
   * @return
   */
  public static Map<String,String> getYmlByFileName(String filePath, String... keys) {
    result = new HashMap<>();
    if(filePath == null) filePath = bootstrap_file;
    InputStream in = null;
    try {
      File file = ResourceUtils.getFile(filePath);
      in = new BufferedInputStream(new FileInputStream(file));
      Yaml props = new Yaml();
      Object obj = props.loadAs(in,Map.class);
      Map<String,Object> param = (Map<String, Object>) obj;

      for(Map.Entry<String,Object> entry:param.entrySet()){
        String key = entry.getKey();
        Object val = entry.getValue();
        if (keys.length != 0 && !keys[0].equals(key)){
          continue;
        }
        if(val instanceof Map){
          forEachYaml(key,(Map<String, Object>) val, 1, keys);
        }else{
          result.put(key, val.toString());
        }
      }
      return result;
    } catch (FileNotFoundException e) {
      LOGGER.error(e.getMessage(),e);
    }finally {
      if (in != null){
        try {
          in.close();
        } catch (IOException e) {
          LOGGER.error(e.getMessage(),e);
        }
      }
    }
    return null;
  }

  /**
   * 根据key获取值
   * @param key
   * @return
   */
  public static String getValue(String key) throws FileNotFoundException {
    Map<String,String> map = getYmlByFileName(null);
    if(map==null)return null;
    return map.get(key);
  }


  /**
   * 遍历yml文件,获取map集合
   * @param key_str
   * @param obj
   * @param i
   * @param keys
   * @return
   */
  public static Map<String,String> forEachYaml(String key_str,Map<String, Object> obj, int i, String... keys){
    for(Map.Entry<String,Object> entry:obj.entrySet()){
      String key = entry.getKey();
      Object val = entry.getValue();
      if (keys.length > i && !keys[i].equals(key)){
        continue;
      }
      String str_new = "";
      if(StringUtils.isNotEmpty(key_str)){
        str_new = key_str+ "."+key;
      }else{
        str_new = key;
      }
      if(val instanceof Map){
        forEachYaml(str_new,(Map<String, Object>) val, ++i, keys);
        i--;
      }else{

        result.put(str_new,val.toString());
      }
    }

    return result;
  }


  /**
   * 获取bootstrap.yml的name
   * @return
   */
  public static String getApplicationName() throws FileNotFoundException {
    return getYmlByFileName(bootstrap_file).get("server.port");
  }

  /**
   * 获取bootstrap.yml的name
   * @return
   */
  public static String getApplicationName1() throws FileNotFoundException {
    String name = getYmlByFileName(bootstrap_file).get("spring.application.name");
    return name + "center";
  }

  public static void main(String[] args) throws FileNotFoundException {

    Map<String, String> ymlByFileName = getYmlByFileName(bootstrap_file,"spring");
    Set<Map.Entry<String, String>> entries = ymlByFileName.entrySet();
    for (Map.Entry<String, String> entry : entries) {
      System.out.println(entry.getKey()+"==="+entry.getValue());
    }

    System.out.println(getApplicationName());
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 我有这个配置文件: 当我尝试检查数据时,它无论如何都连接到“jdbc: h2: mem: testdb”: 为什么Spring启动找不到正确的数据库配置?

  • 本文向大家介绍基于C++实现读取指定路径文件,包括了基于C++实现读取指定路径文件的使用技巧和注意事项,需要的朋友参考一下 电脑配置:window10, 64位操作系统,基于x64的处理器,Microsoft Visual Studio Community 2019 Version 16.4.5 实现方法:使用 boost-filessystem 包。 使用 vcpkg 安装方法: .\vcpkg

  • 本文向大家介绍基于Python和PyYAML读取yaml配置文件数据,包括了基于Python和PyYAML读取yaml配置文件数据的使用技巧和注意事项,需要的朋友参考一下 一、首先我们需要安装 PyYAML 第三方库 直接使用 pip install PyYAML 就可以(这里我之前是装过的,所以提示我PyYAML已经在这个目录下了,是5.1.2版本的) 二、先看一下我的yaml配置文件中数据的格

  • 主要内容:1.SnakeYml,2.jackson-dataformat-yaml,3.Value,4.ConfigurationProperties1.SnakeYml 在使用SnakeYml解析yml时,最常使用的就是load、loadlAll、loadAs方法,这三个方法可以加载yml文件或字符串,最后返回解析后的对象。我们先从基础的load方法开始演示: 接下来看一下loadAll方法,它可以用来加载yml中使用—连接符连接的多个文档,将上面的yml文件进行修改: 在添加了连接符后,尝试

  • 主要内容:1.Environment,2.YamlPropertiesFactoryBean,3.监听事件1.Environment 在Spring中有一个类Environment,它可以被认为是当前应用程序正在运行的环境,它继承了PropertyResolver接口,因此可以作为一个属性解析器使用。先创建一个yml文件,属性如下: 使用起来也非常简单,直接使用@Autowired就可以注入到要使用的类中,然后调用它的getProperty()方法就可以根据属性名称取出对应的值了 在上面的例子中

  • 我正在使用Java的发送SMS。我已经加载了log4j jar文件,并将文件放置在正确的位置,但它仍然无法读取它,并得到以下异常: 例外文本: