How to get the time of last month through LocalDate in java8
大家讲道理
大家讲道理 2017-06-14 10:52:53
0
2
996

As the title says, LocalDate has many methods about next. How can I get the time of last month through Localdate? It can also be a certain day of last month. Then I can intercept the string, and finally it will be like "2017-06"

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(2)
漂亮男人

There is a minusMonths method in the API. If you subtract one month, it means the previous month.
Click to view the API

LocalDate date = LocalDate.now();
date = date.minusMonths(1);
System.out.println(date);
巴扎黑
====================================正确答案==================================

getYear()    int    获取当前日期的年份
getMonth()    Month    获取当前日期的月份对象
getMonthValue()    int    获取当前日期是第几月
getDayOfWeek()    DayOfWeek    表示该对象表示的日期是星期几
getDayOfMonth()    int    表示该对象表示的日期是这个月第几天
getDayOfYear()    int    表示该对象表示的日期是今年第几天
withYear(int year)    LocalDate    修改当前对象的年份
withMonth(int month)    LocalDate    修改当前对象的月份
withDayOfMonth(int dayOfMonth)    LocalDate    修改当前对象在当月的日期
isLeapYear()    boolean    是否是闰年
lengthOfMonth()    int    这个月有多少天
lengthOfYear()    int    该对象表示的年份有多少天(365或者366)
plusYears(long yearsToAdd)    LocalDate    当前对象增加指定的年份数
plusMonths(long monthsToAdd)    LocalDate    当前对象增加指定的月份数
plusWeeks(long weeksToAdd)    LocalDate    当前对象增加指定的周数
plusDays(long daysToAdd)    LocalDate    当前对象增加指定的天数
minusYears(long yearsToSubtract)    LocalDate    当前对象减去指定的年数
minusMonths(long monthsToSubtract)    LocalDate    当前对象减去注定的月数
minusWeeks(long weeksToSubtract)    LocalDate    当前对象减去指定的周数
minusDays(long daysToSubtract)    LocalDate    当前对象减去指定的天数
compareTo(ChronoLocalDate other)    int    比较当前对象和other对象在时间上的大小,返回值如果为正,则当前对象时间较晚,
isBefore(ChronoLocalDate other)    boolean    比较当前对象日期是否在other对象日期之前
isAfter(ChronoLocalDate other)    boolean    比较当前对象日期是否在other对象日期之后
isEqual(ChronoLocalDate other)    boolean    比较两个日期对象是否相等

Listing so many methods is not to ask you to memorize them by rote, but to have an impression in your mind and know what common methods are there and what they can do. To sum up, there are four commonly used methods in the LocalDate class: obtaining date information, modifying date information, addition and subtraction operations, and comparison between date objects. After remembering these, you can refer to them later at work without having to reinvent the wheel yourself.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!