不要再重复造轮子了,这款开源工具类库贼好使
来源:     阅读:549
织梦模板店
发布于 2021-03-20 03:25
查看主页

Hutool是一个小而全的Java工具类库,它帮助我们简化每一行代码,避免重复造轮子。假如你有需要用到某些工具类的时候,不妨在Hutool里面找找。本文总结了平常常用的16个工具类,希望对大家有所帮助!

安装

Hutool的安装非常简单,Maven项目中只要在pom.xml增加以下依赖就可。

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

常用工具类

使用一个工具方法代替一段复杂代码,避免复制粘贴代码,可以极大的提高我们的开发效率,下面详情下我常用的工具方法!

Convert

类型转换工具类,用于各种类型数据的转换。平常我们转换类型经常会面临类型转换失败的问题,要写try catch代码,有了它,就不用写了!

//转换为字符串int a = 1;String aStr = Convert.toStr(a);//转换为指定类型数组String[] b = {"1", "2", "3", "4"};Integer[] bArr = Convert.toIntArray(b);//转换为日期对象String dateStr = "2017-05-06";Date date = Convert.toDate(dateStr);//转换为列表String[] strArr = {"a", "b", "c", "d"};List<String> strList = Convert.toList(String.class, strArr);

DateUtil

日期时间工具类,定义了少量常用的日期时间操作方法。JDK自带的Date和Calendar对象真心不好用,有了它操作日期时间就简单多了!

//Date、long、Calendar之间的相互转换//当前时间Date date = DateUtil.date();//Calendar转Datedate = DateUtil.date(Calendar.getInstance());//时间戳转Datedate = DateUtil.date(System.currentTimeMillis());//自动识别格式转换String dateStr = "2017-03-01";date = DateUtil.parse(dateStr);//自己设置格式化转换date = DateUtil.parse(dateStr, "yyyy-MM-dd");//格式化输出日期String format = DateUtil.format(date, "yyyy-MM-dd");//取得年的部分int year = DateUtil.year(date);//取得月份,从0开始计数int month = DateUtil.month(date);//获取某天的开始、结束时间Date beginOfDay = DateUtil.beginOfDay(date);Date endOfDay = DateUtil.endOfDay(date);//计算偏移后的日期时间Date newDate = DateUtil.offset(date, DateField.DAY_OF_MONTH, 2);//计算日期时间之间的偏移量long betweenDay = DateUtil.between(date, newDate, DateUnit.DAY);

JSONUtil

JSON解析工具类,可用于对象与JSON之间的互相转化。

PmsBrand brand = new PmsBrand();brand.setId(1L);brand.setName("小米");brand.setShowStatus(1);//对象转化为JSON字符串String jsonStr = JSONUtil.parse(brand).toString();LOGGER.info("jsonUtil parse:{}", jsonStr);//JSON字符串转化为对象PmsBrand brandBean = JSONUtil.toBean(jsonStr, PmsBrand.class);LOGGER.info("jsonUtil toBean:{}", brandBean);List<PmsBrand> brandList = new ArrayList<>();brandList.add(brand);String jsonListStr = JSONUtil.parse(brandList).toString();//JSON字符串转化为列表brandList = JSONUtil.toList(new JSONArray(jsonListStr), PmsBrand.class);LOGGER.info("jsonUtil toList:{}", brandList);

StrUtil

字符串工具类,定义了少量常用的字符串操作方法。StrUtil比StringUtil名称更短,用起来也更方便!

//判断能否为空字符串String str = "test";StrUtil.isEmpty(str);StrUtil.isNotEmpty(str);//去除字符串的前后缀StrUtil.removeSuffix("a.jpg", ".jpg");StrUtil.removePrefix("a.jpg", "a.");//格式化字符串String template = "这只是个占位符:{}";String str2 = StrUtil.format(template, "我是占位符");LOGGER.info("/strUtil format:{}", str2);

ClassPathResource

ClassPath单一资源访问类,可以获取classPath下的文件,在Tomcat等容器下,classPath一般是WEB-INF/classes。

//获取定义在src/main/resources文件夹中的配置文件ClassPathResource resource = new ClassPathResource("generator.properties");Properties properties = new Properties();properties.load(resource.getStream());LOGGER.info("/classPath:{}", properties);

ReflectUtil

Java反射工具类,可用于反射获取类的方法及创立对象。

//获取某个类的所有方法Method[] methods = ReflectUtil.getMethods(PmsBrand.class);//获取某个类的指定方法Method method = ReflectUtil.getMethod(PmsBrand.class, "getId");//使用反射来创立对象PmsBrand pmsBrand = ReflectUtil.newInstance(PmsBrand.class);//反射执行对象的方法ReflectUtil.invoke(pmsBrand, "setId", 1);

NumberUtil

数字解决工具类,可用于各种类型数字的加减乘除操作及类型判断。

double n1 = 1.234;double n2 = 1.234;double result;//对float、double、BigDecimal做加减乘除操作result = NumberUtil.add(n1, n2);result = NumberUtil.sub(n1, n2);result = NumberUtil.mul(n1, n2);result = NumberUtil.div(n1, n2);//保留两位小数BigDecimal roundNum = NumberUtil.round(n1, 2);String n3 = "1.234";//判断能否为数字、整数、浮点数NumberUtil.isNumber(n3);NumberUtil.isInteger(n3);NumberUtil.isDouble(n3);

BeanUtil

JavaBean工具类,可用于Map与JavaBean对象的互相转换以及对象属性的拷贝。

PmsBrand brand = new PmsBrand();brand.setId(1L);brand.setName("小米");brand.setShowStatus(0);//Bean转MapMap<String, Object> map = BeanUtil.beanToMap(brand);LOGGER.info("beanUtil bean to map:{}", map);//Map转BeanPmsBrand mapBrand = BeanUtil.mapToBean(map, PmsBrand.class, false);LOGGER.info("beanUtil map to bean:{}", mapBrand);//Bean属性拷贝PmsBrand copyBrand = new PmsBrand();BeanUtil.copyProperties(brand, copyBrand);LOGGER.info("beanUtil copy properties:{}", copyBrand);

CollUtil

集合操作的工具类,定义了少量常用的集合操作。

//数组转换为列表String[] array = new String[]{"a", "b", "c", "d", "e"};List<String> list = CollUtil.newArrayList(array);//join:数组转字符串时增加连接符号String joinStr = CollUtil.join(list, ",");LOGGER.info("collUtil join:{}", joinStr);//将以连接符号分隔的字符串再转换为列表List<String> splitList = StrUtil.split(joinStr, ',');LOGGER.info("collUtil split:{}", splitList);//创立新的Map、Set、ListHashMap<Object, Object> newMap = CollUtil.newHashMap();HashSet<Object> newHashSet = CollUtil.newHashSet();ArrayList<Object> newList = CollUtil.newArrayList();//判断列表能否为空CollUtil.isEmpty(list);

MapUtil

Map操作工具类,可用于创立Map对象及判断Map能否为空。

//将多个键值对加入到Map中Map<Object, Object> map = MapUtil.of(new String[][]{    {"key1", "value1"},    {"key2", "value2"},    {"key3", "value3"}});//判断Map能否为空MapUtil.isEmpty(map);MapUtil.isNotEmpty(map);

AnnotationUtil

注解工具类,可用于获取注解与注解中指定的值。

//获取指定类、方法、字段、构造器上的注解列表Annotation[] annotationList = AnnotationUtil.getAnnotations(HutoolController.class, false);LOGGER.info("annotationUtil annotations:{}", annotationList);//获取指定类型注解Api api = AnnotationUtil.getAnnotation(HutoolController.class, Api.class);LOGGER.info("annotationUtil api value:{}", api.description());//获取指定类型注解的值Object annotationValue = AnnotationUtil.getAnnotationValue(HutoolController.class, RequestMapping.class);

SecureUtil

加密解密工具类,可用于MD5加密。

//MD5加密String str = "123456";String md5Str = SecureUtil.md5(str);LOGGER.info("secureUtil md5:{}", md5Str)

CaptchaUtil

验证码工具类,可用于生成图形验证码。

//生成验证码图片LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(200, 100);try {    request.getSession().setAttribute("CAPTCHA_KEY", lineCaptcha.getCode());    response.setContentType("image/png");//告诉浏览器输出内容为图片    response.setHeader("Pragma", "No-cache");//禁止浏览器缓存    response.setHeader("Cache-Control", "no-cache");    response.setDateHeader("Expire", 0);    lineCaptcha.write(response.getOutputStream());} catch (IOException e) {    e.printStackTrace();}

Validator

字段验证器,可以对不同格式的字符串进行验证,比方邮箱、手机号、IP等格式。

//判断能否为邮箱地址boolean result = Validator.isEmail("macro@qq.com");LOGGER.info("Validator isEmail:{}", result);//判断能否为手机号码result = Validator.isMobile("18911111111");LOGGER.info("Validator isMobile:{}", result);//判断能否为IPV4地址result = Validator.isIpv4("192.168.3.101");LOGGER.info("Validator isIpv4:{}", result);//判断能否为汉字result = Validator.isChinese("你好");LOGGER.info("Validator isChinese:{}", result);//判断能否为身份证号码(18位中国)result = Validator.isCitizenId("123456");LOGGER.info("Validator isCitizenId:{}", result);//判断能否为URLresult = Validator.isUrl("http://www.baidu.com");LOGGER.info("Validator isUrl:{}", result);//判断能否为生日result = Validator.isBirthday("2020-02-01");LOGGER.info("Validator isBirthday:{}", result);

DigestUtil

摘要算法工具类,支持MD5、SHA-256、Bcrypt等算法。

String password = "123456";//计算MD5摘要值,并转为16进制字符串String result = DigestUtil.md5Hex(password);LOGGER.info("DigestUtil md5Hex:{}", result);//计算SHA-256摘要值,并转为16进制字符串result = DigestUtil.sha256Hex(password);LOGGER.info("DigestUtil sha256Hex:{}", result);//生成Bcrypt加密后的密文,并校验String hashPwd = DigestUtil.bcrypt(password);boolean check = DigestUtil.bcryptCheck(password,hashPwd);LOGGER.info("DigestUtil bcryptCheck:{}", check);

HttpUtil

Http请求工具类,可以发起GET/POST等请求。

String response = HttpUtil.get("http://localhost:8080/hutool/covert");LOGGER.info("HttpUtil get:{}", response);
免责声明:本文为用户发表,不代表网站立场,仅供参考,不构成引导等用途。 系统环境 软件环境
相关推荐
第76节:Java中的基础知识
openstack多AZ的存储同步确保VM的HA
《图解CSS》选择器
想尝试转前台,但不知道从何学起
常用的Java快捷键有哪些
首页
搜索
订单
购物车
我的