c++string类的常⽤⽅法_Hutool中那些常⽤的⼯具类和⽅法
Hutool是⼀个Java⼯具包,它帮助我们简化每⼀⾏代码,避免重复造轮⼦。如果你有需要⽤到某些⼯具⽅法的时候,不妨在Hutool ⾥⾯,可能就有。本⽂将对Hutool中的常⽤⼯具类和⽅法进⾏介绍。
安装
maven项⽬在l添加以下依赖即可:
<dependency>
<groupId>cn.hutoolgroupId>
<artifactId>hutool-allartifactId>
<version>4.6.3version>
dependency>
常⽤⼯具类
Convert
类型转换⼯具类,⽤于各种类型数据的转换。
//转换为字符串
int a = 1;
String aStr = Str(a);
//转换为指定类型数组
String[] b = {"1", "2", "3", "4"};
Integer[] bArr = IntArray(b);
//转换为⽇期对象
String dateStr = "2017-05-06";
Date date = Date(dateStr);
//转换为列表
String[] strArr = {"a", "b", "c", "d"};
List strList = List(String.class, strArr);
DateUtil
⽇期时间⼯具类,定义了⼀些常⽤的⽇期时间操作⽅法。
//Date、long、Calendar之间的相互转换
//当前时间
Date date = DateUtil.date();
//Calendar转Date
date = DateUtil.Instance());
//时间戳转Date
date = DateUtil.date(System.currentTimeMillis());
/
/⾃动识别格式转换
String dateStr = "2017-03-01";
bigdecimal转换为integerdate = DateUtil.parse(dateStr);
//⾃定义格式化转换
date = DateUtil.parse(dateStr, "yyyy-MM-dd");
//格式化输出⽇期
String format = DateUtil.format(date, "yyyy-MM-dd");
//获得年的部分
int year = ar(date);
//获得⽉份,从0开始计数
int month = h(date);
/
/获取某天的开始、结束时间
Date beginOfDay = DateUtil.beginOfDay(date);
Date endOfDay = dOfDay(date);
//计算偏移后的⽇期时间
Date newDate = DateUtil.offset(date, DateField.DAY_OF_MONTH, 2);
//计算⽇期时间之间的偏移量
long betweenDay = DateUtil.between(date, newDate, DateUnit.DAY);
StrUtil
字符串⼯具类,定义了⼀些常⽤的字符串操作⽅法。
//判断是否为空字符串
String str = "test";
StrUtil.isEmpty(str);
StrUtil.isNotEmpty(str);
//去除字符串的前后缀
//格式化字符串
String template = "这只是个占位符:{}";
String str2 = StrUtil.format(template, "我是占位符");
LOGGER.info("/strUtil format:{}", str2);
ClassPathResource
获取classPath下的⽂件,在Tomcat等容器下,classPath⼀般是WEB-INF/classes。
/
/获取定义在src/main/resources⽂件夹中的配置⽂件
ClassPathResource resource = new ClassPathResource("generator.properties");
Properties properties = new Properties();
properties.Stream());
LOGGER.info("/classPath:{}", properties);
ReflectUtil
Java反射⼯具类,可⽤于反射获取类的⽅法及创建对象。
//获取某个类的所有⽅法
Method[] methods = Methods(PmsBrand.class);
//获取某个类的指定⽅法
Method method = Method(PmsBrand.class, "getId");
/
/使⽤反射来创建对象
PmsBrand pmsBrand = wInstance(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 = und(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转Map
Map map = BeanUtil.beanToMap(brand);
LOGGER.info("beanUtil bean to map:{}", map);//Map转Bean
PmsBrand mapBrand = BeanUtil.mapToBean(map, PmsBrand.class, false);
LOGGER.info("beanUtil map to bean:{}", mapBrand);//Bean属性拷贝
PmsBrand copyBrand = new PmsBrand();
LOGGER.info("beanUtil copy properties:{}", copyBrand);
CollUtil
集合操作的⼯具类,定义了⼀些常⽤的集合操作。
String[] array = new String[]{"a", "b", "c", "d", "e"};
List list = wArrayList(array);//join:数组转字符串时添加连接符号
String joinStr = CollUtil.join(list, ",");
LOGGER.info("collUtil join:{}", joinStr);//将以连接符号分隔的字符串再转换为列表
List splitList = StrUtil.split(joinStr, ',');
LOGGER.info("collUtil split:{}", splitList);//创建新的Map、Set、List
HashMap newMap = wHashMap();
HashSet newHashSet = wHashSet();
ArrayList newList = wArrayList();//判断列表是否为空
CollUtil.isEmpty(list);
MapUtil
Map操作⼯具类,可⽤于创建Map对象及判断Map是否为空。
//将多个键值对加⼊到Map中
Map map = MapUtil.of(new String[][]{
{"key1", "value1"},
{"key2", "value2"},
{"key3", "value3"}
});//判断Map是否为空
MapUtil.isEmpty(map);
MapUtil.isNotEmpty(map);
AnnotationUtil
注解⼯具类,可⽤于获取注解与注解中指定的值。
//获取指定类、⽅法、字段、构造器上的注解列表
Annotation[] annotationList = Annotations(HutoolController.class, false);
LOGGER.info("annotationUtil annotations:{}", annotationList);
//获取指定类型注解
Api api = Annotation(HutoolController.class, Api.class);
LOGGER.info("annotationUtil api value:{}", api.description());
//获取指定类型注解的值
Object annotationValue = AnnotationValue(HutoolController.class, RequestMapping.class); SecureUtil
加密解密⼯具类,可⽤于MD5加密。
//MD5加密
String str = "123456";
String md5Str = SecureUtil.md5(str);
LOGGER.info("secureUtil md5:{}", md5Str);
CaptchaUtil
验证码⼯具类,可⽤于⽣成图形验证码。
LineCaptcha lineCaptcha = ateLineCaptcha(200, 100);
try {
response.setHeader("Pragma", "No-cache");//禁⽌浏览器缓存
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expire", 0);
lineCaptcha.OutputStream());
} catch (IOException e) {
e.printStackTrace();
}
其他⼯具类
项⽬源码地址
推荐阅读
Java 8都出那么久了,Stream API了解下?
SpringBoot Admin 2.0 详解
IDEA中的Git操作,看这⼀篇就够了!
10分钟搭建⾃⼰的Git仓库
那些年,我们见过的 Java 服务端乱象
我的Github开源项⽬,从0到20000 Star!
欢迎关注,点个在看
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论