将 Date 对象转换为日历对象

2022-08-31 05:59:17

因此,我从表单中的传入对象中获取日期属性:

Tue May 24 05:05:16 EDT 2011

我正在编写一个简单的帮助器方法将其转换为日历方法,我使用以下代码:

    public static Calendar DateToCalendar(Date date ) 
{ 
 Calendar cal = null;
 try {   
  DateFormat formatter = new SimpleDateFormat("yyyyMMdd");
  date = (Date)formatter.parse(date.toString()); 
  cal=Calendar.getInstance();
  cal.setTime(date);
  }
  catch (ParseException e)
  {
      System.out.println("Exception :"+e);  
  }  
  return cal;
 }

为了模拟传入的对象,我只是在当前使用的代码中分配值:

private Date m_lastActivityDate = new Date();

但是,一旦方法达到,这就给我一个空指针:

date = (Date)formatter.parse(date.toString()); 

答案 1

这是你的方法:

public static Calendar toCalendar(Date date){ 
  Calendar cal = Calendar.getInstance();
  cal.setTime(date);
  return cal;
}

你正在做的其他一切都是错误的,也是不必要的。

顺便说一句,Java命名约定建议方法名称以小写字母开头,因此它应该是:或(如图所示)。dateToCalendartoCalendar


好吧,让我们挤你的代码,好吗?

DateFormat formatter = new SimpleDateFormat("yyyyMMdd");
date = (Date)formatter.parse(date.toString()); 

DateFormat用于将字符串转换为日期 () 或将日期转换为字符串 ()。您正在使用它来分析日期的字符串表示形式,并将其解析回日期。这不可能是对的,不是吗?parse()format()


答案 2

只需使用Apache Commons

DateUtils.toCalendar(Date date)