91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么基于JAVA讀取yml配置文件指定key內容

發布時間:2021-03-05 15:22:40 來源:億速云 閱讀:512 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關怎么基于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

天门市| 宣威市| 武胜县| 临湘市| 基隆市| 兴文县| 河南省| 逊克县| 天长市| 博兴县| 杨浦区| 莎车县| 大厂| 昌平区| 南汇区| 广丰县| 桦甸市| 萝北县| 大厂| 涪陵区| 金华市| 澳门| 永济市| 平凉市| 南溪县| 肥乡县| 普宁市| 锡林郭勒盟| 巴马| 田阳县| 黄平县| 巴林左旗| 施秉县| 张北县| 双辽市| 金湖县| 安远县| 宁国市| 兖州市| 东兰县| 常宁市|