美文网首页
DateTimeFormatter

DateTimeFormatter

作者: 暗夜行者 | 来源:发表于2019-08-06 15:24 被阅读0次

public static String getMonthNameAndYear(String format,long monthsToAdd) {

Date date =new Date();

LocalDate localDate = date.toInstant().atZone(ZoneId.systemDefault()).toLocalDate();

DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format);

return localDate.plusMonths(monthsToAdd).format(formatter);

}

DateTimeFormatter 线程安全,而SimpleDateFormat 非线程安全,很多处理时间加减的功能正逐渐过期

MMMM 月份全程

MMM 月份简称

MM 月份数字

相关文章

网友评论

      本文标题:DateTimeFormatter

      本文链接:https://www.haomeiwen.com/subject/cjfwdctx.html