摘要: /** * 计算 年龄 * * @param birthDate 生日 * @return 岁数 当 生日 大于 当前时间时,返回 -1 */ public static int getAge(Date birthDate) { // 当前日历 Calendar nowCalendar = Cale 阅读全文
posted @ 2023-11-18 15:27 岁月记忆 阅读(16) 评论(0) 推荐(0) 编辑
摘要: /** * 判断指定时间是否在指定时间范围 * 指定时间为 null 时, 指定时间为 当前时间 * @param from 开始时间 * @param to 结束时间 * @return 结果 当 from ≥ 当前时间 ≤ to :true,否则 false */ public static b 阅读全文
posted @ 2023-11-18 15:26 岁月记忆 阅读(7) 评论(0) 推荐(0) 编辑
摘要: //获取月度第一天 public String getFirstMonthDay(int month) { Calendar calendar = Calendar.getInstance(); // 设置月份 calendar.set(Calendar.MONTH, month - 1); // 阅读全文
posted @ 2023-11-18 15:24 岁月记忆 阅读(29) 评论(0) 推荐(0) 编辑
摘要: public String formatTosepara(BigDecimal value) { Double data = Double.valueOf(String.valueOf(value)); DecimalFormat df = new DecimalFormat("#,###.00") 阅读全文
posted @ 2023-11-18 15:23 岁月记忆 阅读(66) 评论(0) 推荐(0) 编辑