当前位置:   article > 正文

hutool常用的工具类

hutool常用的工具类


前言

hutool愿称之为java小宝库


一、引入依赖?

代码如下(示例):

<dependency>
    <groupId>cn.hutool</groupId>
    <artifactId>hutool-all</artifactId>
    <version>5.3.7</version>
</dependency>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

二、常用方法

1.Convert方法

代码如下(示例):

int a = 1;
        //aStr为"1"
        String aStr = Convert.toStr(a);

        String date = "2024-01-12";
        Date value = Convert.toDate(date);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2.StrUtil方法

代码如下(示例):

String template = "{}爱{},就像老鼠爱大米";
        String str = StrUtil.format(template, "我", "你");
  • 1
  • 2

3.ObjectUtil方法

代码如下(示例):

String string = null;
        String string1 = "2";
        String enums = ObjectUtil.defaultIfNull(string, "1");
        String enums1 = ObjectUtil.defaultIfNull(string1, "1");
  • 1
  • 2
  • 3
  • 4

4.MapUtil方法

代码如下(示例):

Map<Object, Object> colorMap = MapUtil.of(new String[][]{
                {"RED", "#FF0000"},
                {"GREEN", "#00FF00"},
                {"BLUE", "#0000FF"}
        });
  • 1
  • 2
  • 3
  • 4
  • 5

5.JSONUtil方法

userDto

@Data
public class User {
    private Integer id;
    private String name;
}
  • 1
  • 2
  • 3
  • 4
  • 5

代码如下(示例):

//json
        SortedMap<Object, Object> sortedMap = new TreeMap<Object, Object>() {
            private static final long serialVersionUID = 1L;

            {
                put("attributes", "a");
                put("b", "b");
                put("c", "c");
            }
        };
        JSONUtil.toJsonStr(sortedMap);

        // JSONObject
        String jsonStr = "{\"b\":\"value2\",\"c\":\"value3\",\"a\":\"value1\"}";
        //方法一:使用工具类转换
        JSONObject jsonObject = JSONUtil.parseObj(jsonStr);
        //方法二:new的方式转换
        JSONObject jsonObject2 = new JSONObject(jsonStr);
        //JSON对象转字符串(一行)
        jsonObject.toString();
        // 也可以美化一下,即显示出带缩进的JSON:
        jsonObject.toStringPretty();


        //JSONArray
        String jsonArr = "[{\"id\":111,\"name\":\"test1\"},{\"id\":112,\"name\":\"test2\"}]";
        JSONArray array = JSONUtil.parseArray(jsonArr);
        List<User> userList = JSONUtil.toList(array, User.class);
        // 111
        userList.get(0).getId();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

6.ZipUtil方法

代码如下(示例):

@PostMapping("unzip")
    public ApiResult<?> fileUnZip(MultipartFile file) {
        if (null == file) {
            return ApiResult.fail("文件为空!");
        }
        //解压
        File uploadFile = FileUtil.getFile(file);
        // 参数是压缩包路径和编码
        // GBK是为了解决中文解压缩乱码的问题
        File unFile = ZipUtil.unzip(uploadFile.getAbsolutePath(), Charset.forName("GBK"));
        List<File> fileList = FileUtil.loopFiles(unFile.getAbsolutePath());
        log.info("解压之后的文件:{}", JSONUtil.toJsonStr(fileList));
        //调用上传方法上传oss拿到url或者做其他处理
        return ApiResult.ok(fileList);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

总结

hutools方法还很多 很实用的工具类

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/544533
推荐阅读
相关标签
  

闽ICP备14008679号