Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I get a date attribute from an incoming object in the form:

Tue May 24 05:05:16 EDT 2011

I am writing a simple helper method to convert it to a calendar method, I was using the following code:

    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;
 }

To simulate the incoming object I am just assigning the values within the code currently using:

private Date m_lastActivityDate = new Date();

However this is givin me a null pointer once the method reaches:

date = (Date)formatter.parse(date.toString()); 
share|improve this question

2 Answers

up vote 31 down vote accepted

Here's your method:

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

Everything else you are doing is both wrong and unnecessary.

BTW, Java Naming conventions suggest that method names start with a lower case letter, so it should be: dateToCalendar


OK, let's milk your code, shall we?

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

DateFormat is used to convert Strings to Dates (parse()) or Dates to Strings (format()). You are using it to parse the String representation of a Date back to a Date. This can't be right, can it?

share|improve this answer
Many thanks man. I actually got that code of a website. Given the cleanness of the above method I am now begining to feel my intToCalendar method my be somewhat bloated ` public static Calendar intToCalendar(int i) {` Calendar cal = null; try { String stringInt = String.valueOf(i); DateFormat formatter = new SimpleDateFormat("yyyyMMdd"); Date date = (Date)formatter.parse(stringInt); cal=Calendar.getInstance(); cal.setTime(date); } catch (ParseException e) { System.out.println("Exception :"+e); } return cal; }` – Will May 31 '11 at 10:26
@Will a) don't use int, use long. Dates hold larger values than int can store. b) use new Date(long) – Sean Patrick Floyd May 31 '11 at 10:31
It looks like the code in the original question was intended not only to convert Date to Calendar, but also to remove the time from the date at the same time. How to do the latter correctly can be found here. Instead of using (Date)formatter.parse(date.toString());, try formatter.parse(formatter.format(date)); – Chris Mar 16 at 11:59

it's so easy...converting a date to calendar like this:

>     Calendar cal=Calendar.getInstance();
>     DateFormat format=new SimpleDateFormat("yyyy/mm/dd");
>     format.format(date);
>     cal=format.getCalendar();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.