欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

hutool中资源流相关操作

程序员文章站 2022-03-26 17:56:48
举例:jdk中读取properties文件中的操作 // 读取到资源文件 .properties 默认不需要写后缀 ,还可以实现国际化和本地化 ResourceBundle resourceBundle = ResourceBundle.getBundle("test"); // 获取所有的key Enumeration keys = resourceBundle.getKeys(); while (keys.ha...

举例:jdk中读取properties文件中的操作

 // 读取到资源文件 .properties 默认不需要写后缀 ,还可以实现国际化和本地化
        ResourceBundle resourceBundle = ResourceBundle.getBundle("test");
        // 获取所有的key
        Enumeration<String> keys = resourceBundle.getKeys();
        while (keys.hasMoreElements()) {
            String s = keys.nextElement();
            //  根据key获取所有的value
            String bundleString = resourceBundle.getString(s);
            System.out.println(bundleString);
        }

hutool工具包读取proproties 文件的操作

Props props = PropsUtil.get("test");
        Enumeration<Object> keys = props.keys();
        while (keys.hasMoreElements()) {
            // 根据键获取值
            Object o = keys.nextElement();
            Object o1 = props.get(o);
            System.out.println(o1);

        }

hutool工具包可以操作资源文件(例如:.properties,.xml等)

	// 默认读取的是 classpath路径下的文件
        Resource resourceObj = ResourceUtil.getResourceObj("test.properties");
        // 读取文件中的所有的内容
        String readUtf8Str = resourceObj.readUtf8Str();
        // 读取文件中的所有的内容
        String readUtf8Str1 = ResourceUtil.readUtf8Str("test.properties");

本文地址:https://blog.csdn.net/csdn_cai/article/details/112213179

相关标签: hutool工具类