I am facing this issue, I set the timezone to UTC
but it still Says IST.
>>> import java.util.Calendar
>>> import java.util.TimeZone
>>> val cal = Calendar.getInstance()
>>> cal.setTimeZone(TimeZone.getTimeZone("UTC"))
>>> cal.getTimeZone().getDisplayName()
res95: String = Coordinated Universal Time # here i got UTC
>>> cal.getTime()
res97: java.util.Date = Thu Oct 08 13:13:17 IST 2015
^^^
why here IST insted of UTC???