I have a Timestamp value that comes from my application. The user can be in any given local TimeZone.
This date is used for a WebService and the system irrespective of what timezone user is in always picks up the server timezone(placed in US), I have a need to convert the parameter from system's to user's. I tried this approach:
/**
* Adapt calendar to client time zone.
* @param calendar - adapting calendar
* @param timeZone - client time zone
* @return adapt calendar to client time zone
*/
public static Calendar convertCalendar(final Calendar calendar,
final TimeZone timeZone){
Calendar ret = new GregorianCalendar(timeZone);
ret.setTimeInMillis(calendar.getTimeInMillis() +
timeZone.getOffset(calendar.getTimeInMillis()) -
TimeZone.getDefault().getOffset(calendar.getTimeInMillis()));
ret.getTime();
return ret;
}
There is a syntax error shown on my computer which says that the declaration "public static Calendar convertCalendar(Calendar calendar,TimeZone timeone)" has syntactic problem.
I am using JDK 1.3. I am not sure as to what am I missing.
Can anyone please improve my understanding on this concept?