這篇文章將為大家詳細(xì)講解有關(guān)怎么基于JAVA讀取yml配置文件指定key內(nèi)容,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)成都企業(yè)網(wǎng)站建設(shè)服務(wù),提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作網(wǎng)站開發(fā),網(wǎng)站定制,建網(wǎng)站,網(wǎng)站搭建,網(wǎng)站設(shè)計(jì),響應(yīng)式網(wǎng)站設(shè)計(jì),網(wǎng)頁設(shè)計(jì)師打造企業(yè)風(fēng)格網(wǎng)站,提供周到的售前咨詢和貼心的售后服務(wù)。歡迎咨詢做網(wǎng)站需要多少錢:028-86922220
Java的特點(diǎn)有哪些 1.Java語言作為靜態(tài)面向?qū)ο缶幊陶Z言的代表,實(shí)現(xiàn)了面向?qū)ο罄碚?,允許程序員以優(yōu)雅的思維方式進(jìn)行復(fù)雜的編程。 2.Java具有簡單性、面向?qū)ο蟆⒎植际?、安全性、平臺獨(dú)立與可移植性、動態(tài)性等特點(diǎn)。 3.使用Java可以編寫桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序等。
基于JAVA讀取yml配置文件指定key內(nèi)容
先引入需要的依賴
讀取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 org.yaml snakeyaml 1.23 result = new HashMap<>(); /** * 根據(jù)文件名獲取yml的文件內(nèi)容 * @param filePath * @param keys 第一個(gè)參數(shù)對應(yīng)第一個(gè)key,第二個(gè)參數(shù)對應(yīng)第二個(gè)key 比如spring.name下的所有 就是兩個(gè)參數(shù)、 * getYmlByFileName(bootstrap_file,"spring", "name"); * @return */ public static Map 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 param = (Map ) obj; for(Map.Entry 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 ) 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; } /** * 根據(jù)key獲取值 * @param key * @return */ public static String getValue(String key) throws FileNotFoundException { Map 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 forEachYaml(String key_str,Map obj, int i, String... keys){ for(Map.Entry 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 ) 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 ymlByFileName = getYmlByFileName(bootstrap_file,"spring"); Set > entries = ymlByFileName.entrySet(); for (Map.Entry entry : entries) { System.out.println(entry.getKey()+"==="+entry.getValue()); } System.out.println(getApplicationName()); }}
關(guān)于“怎么基于JAVA讀取yml配置文件指定key內(nèi)容”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。