温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么基于JAVA读取yml配置文件指定key内容

发布时间:2021-03-05 15:22:40 来源:亿速云 阅读:497 作者:小新 栏目:编程语言

这篇文章将为大家详细讲解有关怎么基于JAVA读取yml配置文件指定key内容,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

Java的特点有哪些

Java的特点有哪些 1.Java语言作为静态面向对象编程语言的代表,实现了面向对象理论,允许程序员以优雅的思维方式进行复杂的编程。 2.Java具有简单性、面向对象、分布式、安全性、平台独立与可移植性、动态性等特点。 3.使用Java可以编写桌面应用程序、Web应用程序、分布式系统和嵌入式系统应用程序等。

基于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());  }}

关于“怎么基于JAVA读取yml配置文件指定key内容”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI