Java 获取上一个月的月份的正确写法
更新时间:2023年09月05日 10:53:01 作者:Best_Liu~
这篇文章主要介绍了java获取上一个月月份,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
Java 获取上一个月的月份的正确写法
因最近在写代码的时候遇到了获取上个月月份的问题yyyy-MM这个格式,根据给的工具类,获取出来的值是有问题的,所以记录以下。
问题方法
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM"); Date date = new Date(); System.out.println(nowSdf.format(date)); Calendar calendar = Calendar.getInstance(); // 设置为当前时间 calendar.setTime(date); // 设置为上一个月 calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH) - 1); date = calendar.getTime();
正确的方法
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM"); Date date = new Date(); System.out.println(nowSdf.format(date)); Calendar calendar = Calendar.getInstance(); // 设置为当前时间 calendar.setTime(date); // 设置为上一个月 //calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH) - 1); calendar.add(Calendar.MONTH,-1); date = calendar.getTime();
java 由当前当前月得到上一个月
SimpleDateFormat sd=new SimpleDateFormat("yyyy-MM"); try { String payoffYearMonth = "2018-06"; Date currdate = sd.parse(payoffYearMonth); Calendar calendar= Calendar.getInstance(); calendar.setTime(currdate); calendar.set(Calendar.MONTH,calendar.get(Calendar.MONTH)-1); System.out.println(sd.format(calendar.getTime())); } catch (ParseException e) { e.printStackTrace(); }
到此这篇关于Java 获取上一个月的月份的文章就介绍到这了,更多相关java获取上一个月月份内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
解决websocket 报 Could not decode a text frame as UTF-8错误
这篇文章主要介绍了解决websocket 报 Could not decode a text frame as UTF-8错误,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-10-10Java使用Apache compress实现文件夹压缩成Zip包
Apache common提供了很多实用的工具包,这篇文章主要来和大家介绍一下Java如何使用Apache compress包实现文件夹压缩成Zip包,希望对大家有所帮助2024-01-01java中JsonObject与JsonArray转换方法实例
在项目日常开发中常常会遇到JSONArray和JSONObject的转换,很多公司刚入职的小萌新会卡在这里,下面这篇文章主要给大家介绍了关于java中JsonObject与JsonArray转换方法的相关资料,需要的朋友可以参考下2023-04-04SpringCloud @FeignClient参数的用法解析
这篇文章主要介绍了SpringCloud @FeignClient参数的用法,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2021-10-10详解spring cloud中使用Ribbon实现客户端的软负载均衡
这篇文章主要介绍了详解spring cloud中使用Ribbon实现客户端的软负载均衡,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-01-01
最新评论