Calendar cal = Calendar.getInstance();
cal.setTimeZone(TimeZone.getTimeZone("PST"));
cal.setTime(new Date());

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss a");

Date resultdate = new Date(cal.getTimeInMillis());
sdf.setTimeZone(TimeZone.getTimeZone("PST"));

System.out.println("String date:"+sdf.format(resultdate));
System.out.println("Date:"+sdf.parse(sdf.format(resultdate)));

output:

String date:2011-12-29 09:01:58 PM                                               
Date:Fri Dec 30 10:31:58 IST 2011

Problem:

  1. sdf.format(resultdate) returning correct date and time to as per timezone. But,
  2. sdf.parse(sdf.format(resultdate)) not returning correct date and time to as per timezone, how to fix this problem?
link|improve this question

0% accept rate
Could you just use Joda Time? – Matt Ball Dec 30 '11 at 5:13
feedback

3 Answers

The Date class is merely a thin wrapper around the number of milli-seconds past the 'epoch' (January 1, 1970, 00:00:00 GMT). It doesn't store any timezone information. In your last call you are adding a date instance to a String which implicitly calls the toString() method. The toString() method will use the default timezone to create a String representing the instance (as it doesn't store any timezone info). Try modifying the last line to avoid using the toString() method.

System.out.println("Date:" + sdf.format(sdf.parse(sdf.format(resultdate))));
link|improve this answer
feedback

Unfortunatley Java date returns time in GMT only. When ever you want display in front end or some where, you need to use the formated String generated in your step1.

link|improve this answer
feedback

Try using joda-Time api for your convenience. Example is here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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