最佳答案
在尝试将 java.util.Date
转换为 java.time.LocalDate
时,出现了以下异常。
java.time.DateTimeException: Unable to obtain ZonedDateTime from TemporalAccessor: 2014-08-19T05:28:16.768Z of type java.time.Instant
密码如下:
public static Date getNearestQuarterStartDate(Date calculateFromDate){
int[] quaterStartMonths={1,4,7,10};
Date startDate=null;
ZonedDateTime d=ZonedDateTime.from(calculateFromDate.toInstant());
int frmDateMonth=d.getMonth().getValue();
我使用 ZonedDateTime
类的方式有什么问题吗?
根据文档,这应该将 java.util.Date
对象转换为 ZonedDateTime
。上面的日期格式是标准日期?
我必须要依靠 Joda 的时间吗?
如果有人能提供一些建议,那就太好了。