Am trying convert date which is in local time zone to GMT, i did some thing like this
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss"); sdf.setTimeZone(TimeZone.getTimeZone("GMT")); String gmtStrDate = sdf.format(Calendar.getInstance().getTime()); System.out.println("GMT 1"+gmtStrDate); Date gmtDate = sdf.parse(gmtStrDate); System.out.println("GMT 2"+gmtDate); i am getting GMT 1 o/p in GMT tz but GMT 2 o/p is again changing to local time zone...Can any tel me why?
to get the GMT 2 o/p in GMT i did like this :
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT")); calendar.setTime(gmtDate);
System.out.println("GMT 3 = "+calendar.getTime()); but still GMT 3o/p am getting in local tz. Please suggest on this.