热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

优化时间格式查询:处理yyyyMM与yyyyMMdd类型的上一个月数据检索问题

本文探讨了如何优化时间格式查询,特别是针对`yyyyMM`和`yyyyMMdd`类型的时间格式,提出了有效的方法来检索上一个月的数据。通过使用`SimpleDateFormat`和`Calendar`类,我们实现了一个高效的函数,该函数接收一个字符串参数(如`yyyy-MM`),并返回上一个月的对应日期。此方法不仅提高了查询效率,还增强了代码的可读性和可维护性。

传参类型 String

yyyy-MM

public String lastDate (String date){SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");String lastDate = "";try {Date currentDate = sdf.parse(date);Calendar calendar = Calendar.getInstance();calendar.setTime(currentDate);calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH) - 1);lastDate = sdf.format(calendar.getTime());} catch (Exception e){e.printStackTrace();}return lastDate;
}

yyyy-MM-dd

DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String lastDate = LocalDate.parse(startDate, fmt).minusMonths(1).format(fmt);

推荐阅读
author-avatar
A198806192616
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有