【使用apache snakeyaml 管理yml文件】

使用apache snakeyaml 管理yml文件

  • [1. 一个Yaml工厂](#1. 一个Yaml工厂)
  • 2.Yaml工具类
  • [3. 测试类](#3. 测试类)
  • [4. 完成 ! OK](#4. 完成 ! OK)

1. 一个Yaml工厂

java 复制代码
public class YamlFactory {
    public static YamlUtil get(){
        return new YamlUtil();
    }
}

2.Yaml工具类

java 复制代码
@Slf4j
public class YamlUtil {

    private Yaml yaml;


    public YamlUtil() {
        yaml = new Yaml(new Representer() {
            @Override
            protected NodeTuple representJavaBeanProperty(
                    Object javaBean, Property property, Object propertyValue,
                    Tag customTag) {
                return propertyValue == null ? null
                        : super.representJavaBeanProperty(javaBean, property, 
                        propertyValue, customTag);
            }
        });
    }

    public <T> T loadAs(String yaml, Class<T> type) {
        return this.yaml.loadAs(yaml, type);
    }

    public boolean write(Object obj, String path) {
        try (Writer writer = this.writer(path)) {
            this.dump(obj, writer);
        } catch (IOException e) {
            log.error("写入文件【{}】失败!", path);
            return false;
        }
        return true;
    }

    public boolean yamlFile(@NonNull Object obj, @NonNull String path) {
        try (Writer writer = this.writer(path)) {
            String yamlStr = this.yaml.dumpAsMap(obj);
            writer.write(yamlStr);
            writer.flush();
            log.info("写入文件: success, 文件路径:【{}】 ", path);
        } catch (IOException e) {
            log.error("写入文件: failed, 文件路径:【{}】 ", path);
            return false;
        }
        return true;
    }

    private void dump(Object obj, Writer writer) {
        this.yaml.dump(obj, writer);
    }

    private Writer writer(String path) {
        try {
            File file = new File(path);
            if (!file.exists()) {
                file.createNewFile();
            }
            return new PrintWriter(file);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }
}

3. 测试类

java 复制代码
public class Test {
    public static void main1(String[] args) throws IOException {
        //String yamlStr = 
        		"name: John\nhobby:\n  - A\n  - B\n  - C\nscores:\n  chinese: 66\n  math: 61";
        //Me me = yaml.loadAs(yamlStr, Me.class);
        //System.out.println(me);
        ArrayList<String> hobby = new ArrayList<>();
        hobby.add("唱歌");
        hobby.add("跳舞");
        hobby.add("跑步");
        hobby.add("画画");
        HashMap<String, String> scores = new HashMap<>();
        scores.put("语文","88");
        scores.put("数学","91");
        scores.put("英语","56");
        ArrayList<Parent> parents = new ArrayList<>();
        parents.add(new Parent("111","mather"));
        parents.add(new Parent("222","father"));
        Me me_ = new Me("John", hobby, scores,parents);

        String filePath = "D:/test.yml";
        YamlFactory.get().yamlFile(me_,filePath);
    }

    public static void main(String[] args) {
        String path = "";
        //YamlFactory.get().yamlFile()
    }
}
@Data
@AllArgsConstructor
class Me{
    public String name;
    public List<String> hobby;
    public Map<String ,String> scores;
    public List<Parent> parents;
}

@Data
@AllArgsConstructor
class Parent {
    public String name;
    public String role;
}

4. 完成 ! OK

相关推荐
不倒翁玩偶6 小时前
IDEA导入新的SpringBoot项目没有启动按钮
java·spring boot·intellij-idea
小小小米粒7 小时前
Maven Tools
java
kali-Myon7 小时前
2025春秋杯网络安全联赛冬季赛-day1
java·sql·安全·web安全·ai·php·web
我是咸鱼不闲呀7 小时前
力扣Hot100系列20(Java)——[动态规划]总结(下)( 单词拆分,最大递增子序列,乘积最大子数组 ,分割等和子集,最长有效括号)
java·leetcode·动态规划
清水白石0087 小时前
深入解析 LRU 缓存:从 `@lru_cache` 到手动实现的完整指南
java·python·spring·缓存
符哥20087 小时前
C++ 进阶知识点整理
java·开发语言·jvm
Sayuanni%38 小时前
初阶_多线程1(线程含义与关键属性)
java
程序媛徐师姐8 小时前
Java基于微信小程序的模拟考试系统,附源码+文档说明
java·微信小程序·java模拟考试系统小程序·模拟考试微信小程序·模拟考试系统小程序·模拟考试小程序·java模拟考试小程序
疯狂敲代码的老刘8 小时前
JDK 1.6到25 全版本网盘合集 (Windows + Mac + Linux)
java·linux·windows·macos·jdk
夕除8 小时前
js--15
java·jvm·spring