properties配置文件和yml配置文件互相转换

原因:
在现有的API中只找到了读取yml配置文件转化为properties形式,未找到properties格式文件,网上其他人写的测试后都有各种各样的bug,于是就自己手动重新编写一个。
目标:
1.将properties配置文件转化为yml配置文件,或者将yml格式配置文件转化properties配置文件;
2.将转化后的配置文件写到指定位置,实现动态修改配置文件目的;
3.使不懂配置文件结构的人,使用表单提交的形式修改配置文件,使用程序修改配置文件并写回原配置文件位置;
代码实现

无论是yml还是properties配置文件,都将其读取为properties,添加操作之后再写出为yml或properties,该工具类实现了互相转化和写出

package com.bdms.util;

import com.bdms.util.prop.PropertiesToMapUtil;
import org.springframework.beans.factory.config.YamlPropertiesFactoryBean;
import org.springframework.core.io.FileSystemResource;

import java.io.*;
import java.util.Properties;

/**
 * 配置文件操作工具类
 */
public class PropertiesUtil {

    private static final String ENCODING = "utf-8";

    /**
     * 加载获取yaml配置文件
     * @param filePath
     * @return
     */
    public static Properties loadYaml(String filePath){
        Properties properties = null;
        try {
            YamlPropertiesFactoryBean yaml = new YamlPropertiesFactoryBean();
            yaml.setResources(new FileSystemResource(filePath));
            properties = yaml.getObject();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return properties;
    }

    /**
     * 加载获取properties配置文件
     * @param filePath
     * @return
     */
    public static Properties loadProperties(String filePath){
        FileInputStream fis = null;
        Properties properties = new Properties();
        try {
            fis = new FileInputStream(new File(filePath,ENCODING));
            properties.load(fis);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return properties;
    }

    /**
     * 把properties配置文件写到指定位置
     * @param filePath
     * @param properties
     */
    public static void write2Properties(Properties properties,String filePath){
        FileOutputStream fos = null;
        try {
            if (properties == null) {
                return;
            }
            fos = new FileOutputStream(new File(filePath));
            properties.store(fos,"hello");
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (fos != null) {
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    /**
     * 把 properties 转化为yaml 格式,输出到指定位置
     * @param properties
     * @param filePath
     */
    public static void write2Yaml(Properties properties,String filePath){
        try {
            if (properties == null) {
                return;
            }
            //properties 转化为yaml 格式字符串
            StringBuffer ymlString = PropertiesToMapUtil.prop2YmlString(properties);
            writeStr2File(ymlString,filePath);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * 把字符串写到指定的文件
     * @param msg
     * @param filePath
     */
    public static void writeStr2File(StringBuffer msg,String filePath){
        FileOutputStream fos = null;
        try {
            fos = new FileOutputStream(new File(filePath));
            //将字符串写到指定文件
            fos.write(msg.toString().getBytes());
            fos.close();
        } catch (Exception e) {
            e.printStackTrace();
        }finally {
            if (fos != null) {
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

}

properties转化为yml数据格式核心工具类

package com.bdms.util.prop;

import org.springframework.util.CollectionUtils;

import java.util.*;

/**
 *  把properties 转化为 Map
 */
public class PropertiesToMapUtil {

    /**
     * properties 配置文件转Map 集合
     * @param properties
     * @return
     */
    public static Map<String, Object> prop2Map(Properties properties) {
        Map<String,Object> resultMap = new HashMap<>();
        try {
            Map<String,Object> propMap = new HashMap<>();
            for (Map.Entry<Object, Object> entry : properties.entrySet()) {
                propMap.put((String) entry.getKey(), entry.getValue());
            }
            resultMap = parseToMap(propMap);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return resultMap;
    }

    /**
     * 将propMap 转化为 HashTable结构
     * @param propMap
     * @return
     */
    private static Map<String, Object> parseToMap(Map<String, Object> propMap) {
        Map<String,Object> resultMap = new Hashtable<>();
        try {
            if (CollectionUtils.isEmpty(propMap)) {
                return resultMap;
            }
            Iterator<Map.Entry<String, Object>> it = propMap.entrySet().iterator();
            while (it.hasNext()) {
                Map.Entry<String, Object> entry = it.next();
                String key = entry.getKey();
                Object propValue = entry.getValue();
                Object resultObj = null;
                if (!key.contains(".")) {
                    if (!key.contains("[") && !key.contains("]")) {
                        resultMap.put(key,propValue);
                    }else if (key.contains("[") && key.contains("]")) {
                        key = key.substring(0,key.lastIndexOf("["));
                        resultObj = resultMap.get(key);
                        List<String> list = null;
                        if (resultObj != null) {
                            list = (List<String>) resultObj;
                        }else {
                            list = new ArrayList<>();
                            resultMap.put(key,list);
                        }
                        list.add((String) propValue);
                    }
                    it.remove();
                }else {
                    String currentKey = key.substring(0,key.indexOf("."));
                    Map<String,Object> childMap = getChildMap(propMap,currentKey);
                    Map<String,Object> map = parseToMap(childMap);
                    resultMap.put(currentKey,map);
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return resultMap;
    }

    /**
     * 获取拥有相同父级节点的子节点
     * @param propMap
     * @param currentKey
     * @return
     */
    private static Map<String, Object> getChildMap(Map<String, Object> propMap, String currentKey) {
        Map<String,Object> childMap = new Hashtable<>();
        try {
            Iterator<Map.Entry<String, Object>> iterator = propMap.entrySet().iterator();
            while (iterator.hasNext()) {
                Map.Entry<String, Object> entry = iterator.next();
                String key = entry.getKey();
                if (key.contains(currentKey + ".")) {
                    key = key.substring(key.indexOf(".") + 1);
                    childMap.put(key,entry.getValue());
//                    iterator.remove();
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return childMap;
    }

    /**
     * map集合转化为yaml格式字符串
     * @param propMap
     * @return
     */
    public static StringBuffer map2YamlString(Map<String,Object> propMap){
        //默认deep 为零,表示不空格,deep 每加一层,缩进两个空格
        return map2YamlString(propMap,0);
    }

    /**
     * 把Map集合转化为yaml格式 String字符串
     * @param propMap  map格式配置文件
     * @param deep     树的层级,默认deep 为零,表示不空格,deep 每加一层,缩进两个空格
     * @return
     */
    private static StringBuffer map2YamlString(Map<String,Object> propMap,int deep){
        StringBuffer yamlBuffer = new StringBuffer();
        try {
            if (CollectionUtils.isEmpty(propMap)) {
                return yamlBuffer;
            }
            String space = getSpace(deep);
            for (Map.Entry<String, Object> entry : propMap.entrySet()) {
                String key = entry.getKey();
                Object valObj = entry.getValue();
                if (key.contains("[") && key.contains("]")) { //list下是一个对象
                    Map<String,Object> valMap = (Map<String, Object>) valObj;
                    if (CollectionUtils.isEmpty(valMap)) {
                        return yamlBuffer;
                    }
                    key = key.substring(0,key.indexOf("[")) + ":";
                    yamlBuffer.append(space + key + "\n");
                    yamlBuffer.append(getSpace(deep + 1) + "- ");
                    //在map集合中任意取一个key作为'-'后追加的key
                    String removeKey = "";
                    for (Map.Entry<String, Object> valEntry : valMap.entrySet()) {
                        removeKey = valEntry.getKey();
                        Map<String,Object> val = (Map<String, Object>) valEntry.getValue();
                        yamlBuffer.append(removeKey + ":\n");
                        StringBuffer valStr = map2YamlString(val,deep + 3);
                        yamlBuffer.append(valStr.toString());
                        break;
                    }
                    //移除已使用过的
                    valMap.remove(removeKey);
                    StringBuffer valStr = map2YamlString(valMap,deep + 2);
                    yamlBuffer.append(valStr.toString());
                }else {
                    key = space + key + ":";
                    if (valObj instanceof String) { //值为value 类型,不用再继续遍历
                        yamlBuffer.append(key + " " + (String) valObj + "\n");
                    }else if (valObj instanceof List) { //yaml List 集合格式
                        yamlBuffer.append(key + "\n");
                        List<String> list = (List<String>) entry.getValue();
                        String lSpace = getSpace(deep + 1);
                        for (String str : list) {
                            yamlBuffer.append(lSpace + "- " + str + "\n");
                        }
                    }else if (valObj instanceof Map) { //继续递归遍历
                        Map<String,Object> valMap = (Map<String, Object>) valObj;
                        yamlBuffer.append(key + "\n");
                        StringBuffer valStr = map2YamlString(valMap,deep + 1);
                        yamlBuffer.append(valStr.toString());
                    }else {
                        yamlBuffer.append(key + " " + valObj + "\n");
                    }
                }

            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return yamlBuffer;
    }

    /**
     * 获取缩进空格
     * @param deep
     * @return
     */
    private static String getSpace(int deep) {
        StringBuffer buffer = new StringBuffer();
        if (deep == 0) {
            return "";
        }
        for (int i = 0; i < deep; i++) {
            buffer.append("  ");
        }
        return buffer.toString();
    }

    /**
     * properties 格式转化为 yaml 格式字符串
     * @param properties
     * @return
     */
    public static StringBuffer prop2YmlString(Properties properties){
        if (properties == null || properties.isEmpty()) {
            return new StringBuffer();
        }
        Map<String, Object> map = prop2Map(properties);
        StringBuffer stringBuffer = map2YamlString(map);
        return stringBuffer;
    }

}

根据需求转化为需要的properties或yml配置文件,实现功能。

注意: 该代码再自己本项目中暂未出现bug,但是仍然潜藏着问题,出现bug请自行修改。

  • 2
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值