java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Java解析配置工具类

使用Java编写一个好用的解析配置工具类

作者:jooLs薯薯熹

这篇文章主要为大家详细介绍了如何使用Java编写一个好用的解析配置工具类,支持解析格式有properties,yaml和yml,感兴趣的可以了解下

需求一: 加载解析 .properties 文件

对于一个 .properties 配置文件,如何用 Java 加载读取并解析其中的配置项呢?

方式一: 直接使用 JDK 自带的 Properties

Map 接口实现类 —— Properties

基本介绍 & 常用方法

Properties类常用方法

public class PropertiesAPIs {

    public static void main(String[] args) {

        Properties properties = new Properties();

        //增加
//        properties.put(null, "abc");    报错NullPointerException
//        properties.put("a", null);      报错NullPointerException

        properties.put("john", 100);
        properties.put("wakoo", 100);
        properties.put("john", 11);     //相同的 key 会覆盖

        System.out.println("properties =" + properties);

        System.out.println(properties.get("john"));     //11
        System.out.println(properties.get("wakoo"));    //100
    }
}

解析 Properties 配置文件 - 基于 load 方法

示例

a. 创建一份 mysql.properties

ip=localhost
user=root
password=123456
datasource=druid

b. 解析 .properties 常用方法

public class PropertiesLoadUtils {

    public static void main(String[] args) throws IOException {

        Properties properties = new Properties();

        //load()可传入 Reader 或者 InputStream
        properties.load(PropertiesLoadUtils.class.getResourceAsStream("/mysql.properties"));
//        properties.load(new FileReader("src/main/resources/mysql.properties"));

        //将所有 k-v 显示
        properties.list(System.out);
        System.out.println("----");
        System.out.println(properties.get("user"));     //root
        System.out.println(properties.get("password")); //123456
        System.out.println(properties.get("ip"));       //localhost
        System.out.println(properties.get("datasource"));   //druid

        //设置属性
        properties.setProperty("user", "Wakoo");
        System.out.println(properties.get("user")); //Wakoo

        //设置中文并且写入到 .properties 文件
        properties.setProperty("user", "加瓦编程");
    
        //中文默认会以 Unicode 编码写入
        properties.store(new FileOutputStream("src/main/resources/mysql.properties"),"写入中文");

        
        //重新读取,查看是否正确编码中文
        properties.load(new FileReader("src/main/resources/mysql.properties"));
        System.out.println(properties.getProperty("user"));
    }
}

输出结果

方式二: 基于 Hutools - Props 包装工具类

参考文档

Hutool - Props 扩展类介绍

Hutool - Props - JavaDoc

Properties做了简单的封装,提供了方便的构造方法

常用方法

示例

导入依赖

<dependency>
  <groupId>cn.hutool</groupId>
  <artifactId>hutool-all</artifactId>
  <version>${yours.version}</version>
</dependency>

基本使用

Props props = new Props("test.properties");
String user = props.getProperty("user");
String driver = props.getStr("driver");

测试

public class HutoolProps {
    public static void main(String[] args) throws IOException {

        //加载方式一: 基于 InputStream
//        InputStream in = HutoolProps.class.getResourceAsStream("/mysql.properties");
//        Props props = new Props();

        //加载方式二: 基于绝对路径字符串, 支持定义编码
        Props props = new Props("mysql.properties", StandardCharsets.UTF_8);

        //加载方式三: 传入 Properties 对象
//        Properties properties = new Properties();
//        properties.load(new FileReader("src/main/resources/mysql.properties"));
//        Props props = new Props(properties);

        //还有其他方式....

        //获取单个配置项
        
        System.out.println("user属性值:" + props.getStr("user"));  //root
        System.out.println("user属性值:" + props.getStr("adim", "ROOT"));  //ROOT
        
        //所有属性键值
        Enumeration<?> enumeration = props.propertyNames();
        System.out.println("属性有如下:");
        while (enumeration.hasMoreElements()) {
            System.out.println(enumeration.nextElement());
        }

        Set<Map.Entry<Object, Object>> entries = props.entrySet();
        System.out.println("---- 遍历所有配置项 ----");
        for (Map.Entry<Object, Object> entry : entries) {
            System.out.println("key:" + entry.getKey() + " -> value:" + entry.getValue());
        }
        System.out.println("--------");

        //设置值,无给定键创建之。设置后未持久化
        props.setProperty("ip", "127.0.0.1");

        //若为 true, 配置文件更变时自动修改
        /*
         启动一个 SimpleWatcher 线程监控
            this.watchMonitor = WatchUtil.createModify(this.resource.getUrl(), new SimpleWatcher() {
                public void onModify(WatchEvent<?> event, Path currentPath) {
                    Props.this.load();
                }
            });
            this.watchMonitor.start();
         */
        props.autoLoad(true);
    }
}

输出结果

需求二: 加载解析 .yaml/.yml 文件

支持读取 application.yml、application.yaml 等不同格式的配置文件。

方法: 基于 SnakeYAML 工具

参考文档

SnakeYAML - 仓库

SnakeYaml - Java - Doc

快速入门教程

常用方法

示例

a. 导入依赖

<dependency>
    <groupId>org.yaml</groupId>
    <artifactId>snakeyaml</artifactId>
    <version>${yours.version}</version>            
</dependency>

b. 创建 application.yml 文件

user: root
password: 123456
datasource: druid
ip: 127.0.0.1

测试 - 基于 InputStream 加载**

public class YamlUtils {

    public static void main(String[] args) {

        //基于 SankeYaml 工具类完成转换
        Yaml yaml = new Yaml();

        //基于 InputStream
        InputStream inputStream = YamlUtils.class
        .getClassLoader().getResourceAsStream("application.yml");

        //可直接封装成 Map
        /*
         * Parse the only YAML document in a stream and produce the corresponding Java object.
         *
         * @param io data to load from (BOM is respected to detect encoding and removed from the data)
         * @param <T> the class of the instance to be created
         * @return parsed object

        @SuppressWarnings("unchecked")
        public <T> T load(InputStream io) {
            return (T) loadFromReader(new StreamReader(new UnicodeReader(io)), Object.class);
        }
         */
        Map<String, Object> map = yaml.load(inputStream);

        for (String s : map.keySet()) {
            System.out.println("key:" + s + " -> value:" + map.get(s));
        }
    }
}

输出结果

测试 - 基于 Reader 加载并直接封装返回目标类型

a. 创建目标类型 DbConfigapplication.yml内配置一一对应

import lombok.Data;

/**
 * @description:
 * user: root
 * password: 123456
 * datasource: druid
 * ip: 127.0.0.1
 */
@Data
public class DbConfig {

    private String user;
    private String password;
    private String datasource;
    private String ip;
}

b.测试类

import org.junit.Test;
import org.yaml.snakeyaml.LoaderOptions;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;

@Test
public void testNestObj() {

    //Constructor 为 snakeyaml 依赖包内 class
    Yaml yaml = new Yaml(new Constructor(DbConfig.class, new LoaderOptions()));

    DbConfig dbConfig = null;

    //基于 FileReader
    try (FileReader reader = new FileReader("src/main/resources/application.yml")) {
        //加载 yaml 配置, 自动转换为 DbConfig
        dbConfig = yaml.load(reader);
        System.out.println(dbConfig);

        //查询 DbConfig 对象属性
        System.out.println(dbConfig.getUser());
        System.out.println(dbConfig.getPassword());
        System.out.println(dbConfig.getIp());
        System.out.println(dbConfig.getDatasource());
    } catch (IOException e) {
        System.out.println(e.getMessage());
        throw new RuntimeException(e);
    }
}

输出结果

到此这篇关于使用Java编写一个好用的解析配置工具类的文章就介绍到这了,更多相关Java解析配置工具类内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文