I am trying to set the Timezone to the different country's timezone with help of SimpleDateFormat. SimpleDateFormat.format() returns correct current time of the given Timezone, but SimpleDateFormat.parse() returns local current time, I dont know why this is happening. Here is the my code -
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:MM:ss");
dateFormat.setTimeZone(TimeZone.getTimeZone("America/Los_Angeles"));
System.out.println("Time1 : " + dateFormat.format(new Date()));
System.out.println("Time2 : " + dateFormat.parse(dateFormat.format(new Date())));
The Output is -
Time1 : 2013-01-17 21:01:55
Time2 : Fri Jan 18 10:30:55 IST 2013
Time1 is the output of "America/Los_Angeles" and Time2 is the output of local(i.e. "Asia/Calcutta").
I just want the current time of given Timezone in UTC Seconds format (ie Seconds since Jan 1, 1970).
Why SimpleDateFormat.format() and SimpleDateFormat.parse() are giving different time though setting only one Timezone?
Please help me.